Uses of Interface
org.jboss.marshalling.ByteOutput
-
Packages that use ByteOutput Package Description org.jboss.marshalling The marshalling API. -
-
Uses of ByteOutput in org.jboss.marshalling
Subinterfaces of ByteOutput in org.jboss.marshalling Modifier and Type Interface Description interface
Marshaller
An object marshaller for writing objects to byte streams.Classes in org.jboss.marshalling that implement ByteOutput Modifier and Type Class Description class
AbstractMarshaller
An abstract implementation of theMarshaller
interface.class
AbstractObjectOutput
An abstract object output implementation.class
ByteBufferOutput
AnOutputStream
implementingByteOutput
which writes to aByteBuffer
.class
ByteOutputStream
AnOutputStream
which implementsByteOutput
and writes bytes to anotherByteOutput
.class
LimitedByteOutput
A limited byte output stream.class
MarshallerObjectOutputStream
A marshaller's object output stream.class
ObjectOutputStreamMarshaller
A Marshaller which simply wraps an object stream.class
OutputStreamByteOutput
AnOutputStream
which implementsByteInput
and reads data from anotherOutputStream
.class
SimpleByteOutput
A simple byte output which extendsOutputStream
.class
SimpleDataOutput
A simple base implementation ofDataOutput
which wraps aByteOutput
.Fields in org.jboss.marshalling declared as ByteOutput Modifier and Type Field Description protected ByteOutput
ByteOutputStream. byteOutput
Methods in org.jboss.marshalling that return ByteOutput Modifier and Type Method Description static ByteOutput
Marshalling. createByteOutput(OutputStream outputStream)
Create aByteOutput
wrapper for anOutputStream
.static ByteOutput
Marshalling. createByteOutput(ByteBuffer buffer)
Create aByteOutput
wrapper for aByteBuffer
.ByteOutput
BytePipe. getOutput()
Get the output side of this pipe.Methods in org.jboss.marshalling with parameters of type ByteOutput Modifier and Type Method Description static OutputStream
Marshalling. createOutputStream(ByteOutput byteOutput)
Create aOutputStream
wrapper for aByteOutput
.void
AbstractMarshaller. start(ByteOutput byteOutput)
Begin writing to a stream.void
Marshaller. start(ByteOutput newOutput)
Begin marshalling to a stream.void
ObjectOutputStreamMarshaller. start(ByteOutput newOutput)
Begin marshalling to a stream.protected void
SimpleDataOutput. start(ByteOutput byteOutput)
Begin writing to a stream.void
StreamHeader. writeHeader(ByteOutput output)
Write the stream header to the stream.static void
UTFUtils. writeUTFBytes(ByteOutput output, String s)
Write the modified UTF-8 form of the given string to the given output.Constructors in org.jboss.marshalling with parameters of type ByteOutput Constructor Description ByteOutputStream(ByteOutput byteOutput)
Construct a new instance.LimitedByteOutput(ByteOutput byteOutput, long limit)
Construct a new instance.MarshallingObjectOutputStream(Marshaller marshaller, ByteOutput byteOutput)
Construct a new instance that delegates to the given marshaller.SimpleDataOutput(int bufferSize, ByteOutput byteOutput)
Construct a new instance.SimpleDataOutput(ByteOutput byteOutput)
Construct a new instance with a default buffer size.
-