Uses of Interface
org.jboss.marshalling.ByteInput
-
Packages that use ByteInput Package Description org.jboss.marshalling The marshalling API. -
-
Uses of ByteInput in org.jboss.marshalling
Subinterfaces of ByteInput in org.jboss.marshalling Modifier and Type Interface Description interfaceUnmarshallerAn unmarshaller which reads objects from a stream.Classes in org.jboss.marshalling that implement ByteInput Modifier and Type Class Description classAbstractObjectInputAn abstract object input implementation.classAbstractUnmarshallerAn abstract implementation of theUnmarshallerinterface.classByteBufferInputAnInputStreamwhich implementsByteInputand reads bytes from aByteBuffer.classByteInputStreamAnInputStreamwhich implementsByteInputand reads bytes from anotherByteInput.classInputStreamByteInputAnInputStreamimplementingByteInputwhich reads input from anotherInputStream.classLimitedByteInputA limited byte input stream.classMarshallerObjectInputStreamA marshaller's object input stream.classObjectInputStreamUnmarshallerAn Unmarshaller which simply wraps an object stream.classSimpleByteInputA simple byte input which extendsInputStream.classSimpleDataInputFields in org.jboss.marshalling declared as ByteInput Modifier and Type Field Description protected ByteInputByteInputStream. byteInputMethods in org.jboss.marshalling that return ByteInput Modifier and Type Method Description static ByteInputMarshalling. createByteInput(InputStream inputStream)Create aByteInputwrapper for anInputStream.static ByteInputMarshalling. createByteInput(ByteBuffer buffer)Create aByteInputwrapper for aByteBuffer.ByteInputBytePipe. getInput()Get the input side of this pipe.Methods in org.jboss.marshalling with parameters of type ByteInput Modifier and Type Method Description static InputStreamMarshalling. createInputStream(ByteInput byteInput)Create anInputStreamwrapper for aByteInput.static voidMarshalling. readFully(ByteInput input, byte[] dest)Read bytes from aByteInput.static voidMarshalling. readFully(ByteInput input, byte[] dest, int offs, int len)Read bytes from aByteInput.voidStreamHeader. readHeader(ByteInput input)Read the stream header from the stream.static StringUTFUtils. readUTFBytes(ByteInput input, int len)Read the given number of characters from the given byte input.static StringUTFUtils. readUTFBytesByByteCount(ByteInput input, long len)Read the given number of characters from the given byte input.static StringUTFUtils. readUTFZBytes(ByteInput input)Read a null-terminated modified UTF-8 string from the given byte input.voidAbstractUnmarshaller. start(ByteInput byteInput)Start reading from the given input.voidObjectInputStreamUnmarshaller. start(ByteInput newInput)Begin unmarshalling from a stream.protected voidSimpleDataInput. start(ByteInput byteInput)Start reading from the given input.voidUnmarshaller. start(ByteInput newInput)Begin unmarshalling from a stream.Constructors in org.jboss.marshalling with parameters of type ByteInput Constructor Description ByteInputStream(ByteInput byteInput)Create a new instance.LimitedByteInput(ByteInput byteInput, long limit)Create a new instance.SimpleDataInput(int bufferSize, ByteInput byteInput)Construct a new instance.SimpleDataInput(ByteInput byteInput)Construct a new instance.UnmarshallingObjectInputStream(Unmarshaller unmarshaller, ByteInput byteInput)Construct a new instance which delegates to the given unmarshaller, reading from the given input.
-