Uses of Interface
org.jboss.marshalling.ByteOutput
Packages that use ByteOutput
-
Uses of ByteOutput in org.jboss.marshalling
Subinterfaces of ByteOutput in org.jboss.marshallingModifier and TypeInterfaceDescriptioninterfaceAn object marshaller for writing objects to byte streams.Classes in org.jboss.marshalling that implement ByteOutputModifier and TypeClassDescriptionclassAn abstract implementation of theMarshallerinterface.classAn abstract object output implementation.classAnOutputStreamimplementingByteOutputwhich writes to aByteBuffer.classAnOutputStreamwhich implementsByteOutputand writes bytes to anotherByteOutput.classA limited byte output stream.classA marshaller's object output stream.classA Marshaller which simply wraps an object stream.classAnOutputStreamwhich implementsByteInputand reads data from anotherOutputStream.classA simple byte output which extendsOutputStream.classA simple base implementation ofDataOutputwhich wraps aByteOutput.Fields in org.jboss.marshalling declared as ByteOutputMethods in org.jboss.marshalling that return ByteOutputModifier and TypeMethodDescriptionstatic ByteOutputMarshalling.createByteOutput(OutputStream outputStream) Create aByteOutputwrapper for anOutputStream.static ByteOutputMarshalling.createByteOutput(ByteBuffer buffer) Create aByteOutputwrapper for aByteBuffer.BytePipe.getOutput()Get the output side of this pipe.Methods in org.jboss.marshalling with parameters of type ByteOutputModifier and TypeMethodDescriptionstatic 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 ByteOutputModifierConstructorDescriptionByteOutputStream(ByteOutput byteOutput) Construct a new instance.LimitedByteOutput(ByteOutput byteOutput, long limit) Construct a new instance.protectedMarshallingObjectOutputStream(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.