Uses of Interface
org.jboss.marshalling.ByteOutput
-
Packages that use ByteOutput Package Description org.jboss.marshalling The marshalling API.org.jboss.marshalling.cloner org.jboss.marshalling.river The River protocol implementation package.org.jboss.marshalling.serial -
-
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. byteOutputprivate ByteOutputBytePipe. outputMethods in org.jboss.marshalling that return ByteOutput Modifier and Type Method Description static ByteOutputMarshalling. createByteOutput(java.io.OutputStream outputStream)Create aByteOutputwrapper for anOutputStream.static ByteOutputMarshalling. createByteOutput(java.nio.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 java.io.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.voidMarshalling.StaticStreamHeader. writeHeader(ByteOutput output)voidStreamHeader. writeHeader(ByteOutput output)Write the stream header to the stream.static voidUTFUtils. writeUTFBytes(ByteOutput output, java.lang.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. -
Uses of ByteOutput in org.jboss.marshalling.cloner
Classes in org.jboss.marshalling.cloner that implement ByteOutput Modifier and Type Class Description (package private) classSerializingCloner.StepObjectOutput(package private) classSerializingCloner.StepObjectOutputStreamMethods in org.jboss.marshalling.cloner with parameters of type ByteOutput Modifier and Type Method Description voidSerializingCloner.StepObjectOutput. start(ByteOutput byteOutput) -
Uses of ByteOutput in org.jboss.marshalling.river
Classes in org.jboss.marshalling.river that implement ByteOutput Modifier and Type Class Description classBlockMarshallerclassRiverMarshallerclassRiverObjectOutputStreamMethods in org.jboss.marshalling.river with parameters of type ByteOutput Modifier and Type Method Description voidBlockMarshaller. start(ByteOutput newOutput)voidRiverMarshaller. start(ByteOutput byteOutput) -
Uses of ByteOutput in org.jboss.marshalling.serial
Classes in org.jboss.marshalling.serial that implement ByteOutput Modifier and Type Class Description classBlockMarshallerclassSerialMarshallerclassSerialObjectOutputStreamMethods in org.jboss.marshalling.serial with parameters of type ByteOutput Modifier and Type Method Description voidBlockMarshaller. start(ByteOutput newOutput)voidSerialMarshaller. start(ByteOutput byteOutput)
-