Skip to content

Instantly share code, notes, and snippets.

@orlinmp
orlinmp / Stream.js
Created August 28, 2011 20:27
javascript library: includes system.js and stream.js
//Defines Stream interface
//ServerStream Implements Stream interface to make easy communication with server through Key-Value pairs.
//constructor
function Stream()
{
this._length = 0;
this._position = -1;
};