Uses of Interface
org.jboss.marshalling.ByteInput
-
Packages that use ByteInput 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 ByteInput in org.jboss.marshalling
Subinterfaces of ByteInput in org.jboss.marshalling Modifier and Type Interface Description interface
Unmarshaller
An unmarshaller which reads objects from a stream.Classes in org.jboss.marshalling that implement ByteInput Modifier and Type Class Description class
AbstractObjectInput
An abstract object input implementation.class
AbstractUnmarshaller
An abstract implementation of theUnmarshaller
interface.class
ByteBufferInput
AnInputStream
which implementsByteInput
and reads bytes from aByteBuffer
.class
ByteInputStream
AnInputStream
which implementsByteInput
and reads bytes from anotherByteInput
.class
InputStreamByteInput
AnInputStream
implementingByteInput
which reads input from anotherInputStream
.class
LimitedByteInput
A limited byte input stream.class
MarshallerObjectInputStream
A marshaller's object input stream.class
ObjectInputStreamUnmarshaller
An Unmarshaller which simply wraps an object stream.class
SimpleByteInput
A simple byte input which extendsInputStream
.class
SimpleDataInput
A simple base implementation ofDataInput
which wraps aByteInput
.Fields in org.jboss.marshalling declared as ByteInput Modifier and Type Field Description protected ByteInput
ByteInputStream. byteInput
private ByteInput
BytePipe. input
Methods in org.jboss.marshalling that return ByteInput Modifier and Type Method Description static ByteInput
Marshalling. createByteInput(java.io.InputStream inputStream)
Create aByteInput
wrapper for anInputStream
.static ByteInput
Marshalling. createByteInput(java.nio.ByteBuffer buffer)
Create aByteInput
wrapper for aByteBuffer
.ByteInput
BytePipe. getInput()
Get the input side of this pipe.Methods in org.jboss.marshalling with parameters of type ByteInput Modifier and Type Method Description static java.io.InputStream
Marshalling. createInputStream(ByteInput byteInput)
Create anInputStream
wrapper for aByteInput
.static void
Marshalling. readFully(ByteInput input, byte[] dest)
Read bytes from aByteInput
.static void
Marshalling. readFully(ByteInput input, byte[] dest, int offs, int len)
Read bytes from aByteInput
.void
Marshalling.StaticStreamHeader. readHeader(ByteInput input)
void
StreamHeader. readHeader(ByteInput input)
Read the stream header from the stream.static java.lang.String
UTFUtils. readUTFBytes(ByteInput input, int len)
Read the given number of characters from the given byte input.static java.lang.String
UTFUtils. readUTFBytesByByteCount(ByteInput input, long len)
Read the given number of characters from the given byte input.private static int
UTFUtils. readUTFChar(ByteInput input)
static java.lang.String
UTFUtils. readUTFZBytes(ByteInput input)
Read a null-terminated modified UTF-8 string from the given byte input.void
AbstractUnmarshaller. start(ByteInput byteInput)
Start reading from the given input.void
ObjectInputStreamUnmarshaller. start(ByteInput newInput)
Begin unmarshalling from a stream.protected void
SimpleDataInput. start(ByteInput byteInput)
Start reading from the given input.void
Unmarshaller. 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. -
Uses of ByteInput in org.jboss.marshalling.cloner
Classes in org.jboss.marshalling.cloner that implement ByteInput Modifier and Type Class Description (package private) class
SerializingCloner.StepObjectInput
(package private) class
SerializingCloner.StepObjectInputStream
Methods in org.jboss.marshalling.cloner with parameters of type ByteInput Modifier and Type Method Description void
SerializingCloner.StepObjectInput. start(ByteInput byteInput)
-
Uses of ByteInput in org.jboss.marshalling.river
Classes in org.jboss.marshalling.river that implement ByteInput Modifier and Type Class Description class
BlockUnmarshaller
class
RiverObjectInputStream
class
RiverUnmarshaller
Methods in org.jboss.marshalling.river with parameters of type ByteInput Modifier and Type Method Description void
BlockUnmarshaller. start(ByteInput newInput)
void
RiverUnmarshaller. start(ByteInput byteInput)
-
Uses of ByteInput in org.jboss.marshalling.serial
Classes in org.jboss.marshalling.serial that implement ByteInput Modifier and Type Class Description class
BlockUnmarshaller
class
SerialObjectInputStream
class
SerialUnmarshaller
Methods in org.jboss.marshalling.serial with parameters of type ByteInput Modifier and Type Method Description void
BlockUnmarshaller. start(ByteInput newInput)
void
SerialUnmarshaller. start(ByteInput byteInput)
-