sigmlinlib
Interface BytesBlockStreamHandler

All Known Implementing Classes:
SiGMLInLib

public interface BytesBlockStreamHandler

Interface for the processing of a stream of data blocks, each block being an array of bytes. This interface is similar to StringStreamHandler, except for the type of the data items in the stream.


Method Summary
 void acceptBytesBlock(byte[] bb)
          Accepts the given byte array as the next data block in the stream.
 void bytesBlockStreamStarted()
          Starts processing the stream of data blocks.
 void bytesBlockStreamStopped()
          Terminates processing the stream of data blocks.
 

Method Detail

bytesBlockStreamStarted

void bytesBlockStreamStarted()
Starts processing the stream of data blocks.


acceptBytesBlock

void acceptBytesBlock(byte[] bb)
Accepts the given byte array as the next data block in the stream.


bytesBlockStreamStopped

void bytesBlockStreamStopped()
Terminates processing the stream of data blocks.