Interface TransformOutputStream
-
- All Superinterfaces:
javax.media.rtp.OutputDataStream
- All Known Implementing Classes:
AbstractTransformOutputStream,TransformOutputStreamImpl,TransformTCPOutputStream,TransformUDPOutputStream
public interface TransformOutputStream extends javax.media.rtp.OutputDataStreamDefines the public application programming interface (API) of anOutputDataStreamwhich applies transformations via aPacketTransformerto the data written into it.- Author:
- Lyubomir Marinov
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PacketTransformergetTransformer()Gets thePacketTransformerused by this instance to transformRawPackets.voidsetTransformer(PacketTransformer transformer)Sets thePacketTransformerto be used by this instance to transformRawPackets.
-
-
-
Method Detail
-
getTransformer
PacketTransformer getTransformer()
Gets thePacketTransformerused by this instance to transformRawPackets.- Returns:
- the
PacketTransformerused by this instance to transformRawPackets
-
setTransformer
void setTransformer(PacketTransformer transformer)
Sets thePacketTransformerto be used by this instance to transformRawPackets.- Parameters:
transformer- thePacketTransformerto be used by this instance to transformRawPackets
-
-