Writes a chunk of data to the stream.
- (void)write :(SUPString)data;
SUPSampleAuthor * author = [SUPSampleAuthor findByPrimaryKey:authorID];
SUPBigString *text = author.biography;
NSString *stringToWrite = @"something";
[text openForWrite:[stringToWrite length]];
[text write:stringToWrite];