FileDocCategorySizeDatePackage
BufferTransferHandler.javaAPI DocJMF 2.1.1e1007Mon May 12 12:20:40 BST 2003javax.media.protocol

BufferTransferHandler

public interface BufferTransferHandler
Implements the callback from a PushBufferStream. A PushBufferStream needs to notify the data handler when data is available to be pushed. When the handler connects to a PushBufferStream it should register a BufferTransferHandler object with the stream using the setTransferHandler method.
see
PushBufferStream#setTransferHandler
since
JMF 2.0

Fields Summary
Constructors Summary
Methods Summary
public voidtransferData(javax.media.protocol.PushBufferStream stream)
Notification from the PushBufferStream to the handler that data is available to be read from stream. The data can be read by this handler in the same thread or can be read later.

param
stream The stream that is providing the data.