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 interfaceMarshallerAn object marshaller for writing objects to byte streams.Classes in org.jboss.marshalling that implement ByteOutput Modifier and Type Class Description classAbstractMarshallerAn abstract implementation of theMarshallerinterface.classAbstractObjectOutputAn abstract object output implementation.classByteBufferOutputAnOutputStreamimplementingByteOutputwhich writes to aByteBuffer.classByteOutputStreamAnOutputStreamwhich implementsByteOutputand writes bytes to anotherByteOutput.classLimitedByteOutputA limited byte output stream.classMarshallerObjectOutputStreamA marshaller's object output stream.classObjectOutputStreamMarshallerA Marshaller which simply wraps an object stream.classOutputStreamByteOutputAnOutputStreamwhich implementsByteInputand reads data from anotherOutputStream.classSimpleByteOutputA simple byte output which extendsOutputStream.classSimpleDataOutputA simple base implementation ofDataOutputwhich wraps aByteOutput.Fields in org.jboss.marshalling declared as ByteOutput Modifier and Type Field Description protected ByteOutputByteOutputStream. byteOutputMethods in org.jboss.marshalling that return ByteOutput Modifier and Type Method Description static ByteOutputMarshalling. createByteOutput(OutputStream outputStream)Create aByteOutputwrapper for anOutputStream.static ByteOutputMarshalling. createByteOutput(ByteBuffer buffer)Create aByteOutputwrapper for aByteBuffer.ByteOutputBytePipe. getOutput()Get the output side of this pipe.Methods in org.jboss.marshalling with parameters of type ByteOutput Modifier and Type Method Description static OutputStreamMarshalling. createOutputStream(ByteOutput byteOutput)Create aOutputStreamwrapper for aByteOutput.voidAbstractMarshaller. start(ByteOutput byteOutput)Begin writing to a stream.voidMarshaller. start(ByteOutput newOutput)Begin marshalling to a stream.voidObjectOutputStreamMarshaller. start(ByteOutput newOutput)Begin marshalling to a stream.protected voidSimpleDataOutput. start(ByteOutput byteOutput)Begin writing to a stream.voidStreamHeader. writeHeader(ByteOutput output)Write the stream header to the stream.static voidUTFUtils. 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.
-