X-Git-Url: http://git.ithinksw.org/ITFoundation.git/blobdiff_plain/00792f13efcd8fcf9b175e564b153805b8fb1a23..9b5bd113ceb3ea26e17275df3a31e7df758876ba:/ITByteStream.h diff --git a/ITByteStream.h b/ITByteStream.h index ceab156..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; --(void) writeData:(NSData*)data; +-(NSData*) readAllData; +-(void) writeData:(in NSData*)data; +-(void) writeBytes:(in char *)b len:(long)length; +-(void) lockStream; +-(void) unlockStream; +-(void) shortenData:(long)length; @end