X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/fbc584e3df355220dfd44f7207e304dbe7dd5d93..9b5bd113ceb3ea26e17275df3a31e7df758876ba:/ITByteStream.h?ds=sidebyside diff --git a/ITByteStream.h b/ITByteStream.h index 10d9f0f..1c99d59 100755 --- a/ITByteStream.h +++ b/ITByteStream.h @@ -8,17 +8,24 @@ #import -/*! @class ITByteStream - * @abstract A FIFO bytestream - */ - -@interface ITByteStream : NSObject { +@class ITByteStream; +@protocol DataReciever +-(oneway void)newDataAdded:(id)sender; +@end +@interface ITByteStream : NSObject { + @public NSMutableData *data; @private NSLock *lock; + id delegate; } --(id) initWithStream:(ITByteStream*)stream; +-(id) initWithStream:(ITByteStream*)stream delegate:(id )d; -(int) availableDataLength; -(NSData*) readDataOfLength:(int)length; +-(NSData*) readAllData; -(void) writeData:(in NSData*)data; +-(void) writeBytes:(in char *)b len:(long)length; +-(void) lockStream; +-(void) unlockStream; +-(void) shortenData:(long)length; @end