public class ObjectDataInputStream extends InputStream implements Closeable
| Modifier and Type | Field and Description |
|---|---|
protected Version |
version |
protected Version |
wanProtocolVersion |
| Constructor and Description |
|---|
ObjectDataInputStream(InputStream in,
InternalSerializationService serializationService) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
ByteOrder |
getByteOrder() |
ClassLoader |
getClassLoader()
Returns class loader that internally used for objects.
|
InternalSerializationService |
getSerializationService() |
Version |
getVersion()
If the serializer supports versioning it may set the version to use for
the intra-cluster message serialization on this object.
|
Version |
getWanProtocolVersion()
Returns the WAN protocol version.
|
void |
mark(int readlimit) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
boolean |
readBoolean() |
boolean[] |
readBooleanArray() |
byte |
readByte() |
byte[] |
readByteArray() |
char |
readChar() |
char[] |
readCharArray() |
Data |
readData() |
<T> T |
readDataAsObject()
Reads to stored Data as an object instead of a Data instance.
|
double |
readDouble() |
double[] |
readDoubleArray() |
float |
readFloat() |
float[] |
readFloatArray() |
void |
readFully(byte[] b) |
void |
readFully(byte[] b,
int off,
int len) |
int |
readInt() |
int[] |
readIntArray() |
String |
readLine()
Deprecated.
|
long |
readLong() |
long[] |
readLongArray() |
<T> T |
readObject() |
<T> T |
readObject(Class aClass) |
short |
readShort() |
short[] |
readShortArray() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
String[] |
readUTFArray() |
void |
reset() |
void |
setVersion(Version version)
If the serializer supports versioning it may set the version to use for
the serialization on this object.
|
void |
setWanProtocolVersion(Version version)
Sets the WAN protocol version.
|
long |
skip(long n) |
int |
skipBytes(int n) |
protected Version version
protected Version wanProtocolVersion
public ObjectDataInputStream(InputStream in, InternalSerializationService serializationService)
public int read()
throws IOException
read in class InputStreamIOExceptionpublic long skip(long n)
throws IOException
skip in class InputStreamIOExceptionpublic int available()
throws IOException
available in class InputStreamIOExceptionpublic int read(byte[] b)
throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOExceptionpublic void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOExceptionpublic int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOExceptionpublic boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOExceptionpublic byte readByte()
throws IOException
readByte in interface DataInputIOExceptionpublic int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOExceptionpublic short readShort()
throws IOException
readShort in interface DataInputIOExceptionpublic int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOExceptionpublic char readChar()
throws IOException
readChar in interface DataInputIOExceptionpublic int readInt()
throws IOException
readInt in interface DataInputIOExceptionpublic long readLong()
throws IOException
readLong in interface DataInputIOExceptionpublic float readFloat()
throws IOException
readFloat in interface DataInputIOExceptionpublic double readDouble()
throws IOException
readDouble in interface DataInputIOExceptionpublic byte[] readByteArray()
throws IOException
readByteArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic boolean[] readBooleanArray()
throws IOException
readBooleanArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic char[] readCharArray()
throws IOException
readCharArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic int[] readIntArray()
throws IOException
readIntArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic long[] readLongArray()
throws IOException
readLongArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic double[] readDoubleArray()
throws IOException
readDoubleArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic float[] readFloatArray()
throws IOException
readFloatArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic short[] readShortArray()
throws IOException
readShortArray in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic String[] readUTFArray() throws IOException
readUTFArray in interface ObjectDataInputIOException - if it reaches end of file before finish reading@Deprecated public String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamIOExceptionpublic void mark(int readlimit)
mark in class InputStreampublic void reset()
throws IOException
reset in class InputStreamIOExceptionpublic boolean markSupported()
markSupported in class InputStreampublic <T> T readObject()
throws IOException
readObject in interface ObjectDataInputT - type of the object to be readIOException - if it reaches end of file before finish readingpublic <T> T readDataAsObject()
throws IOException
ObjectDataInput
The reason this method exists is that in some cases Data is stored on serialization, but on deserialization
the actual object instance is needed. Getting access to the Data is easy by calling the ObjectDataInput.readData()
method. But de-serializing the Data to an object instance is impossible because there is no reference to the
SerializationService.
readDataAsObject in interface ObjectDataInputT - type of the object to be readIOException - if it reaches end of file before finish readingpublic <T> T readObject(Class aClass) throws IOException
readObject in interface ObjectDataInputT - type of the object to be readaClass - the type of the class to use when readingIOException - if it reaches end of file before finish readingpublic Data readData() throws IOException
readData in interface ObjectDataInputIOException - if it reaches end of file before finish readingpublic ClassLoader getClassLoader()
ObjectDataInputgetClassLoader in interface ObjectDataInputpublic InternalSerializationService getSerializationService()
getSerializationService in interface ObjectDataInputpublic ByteOrder getByteOrder()
getByteOrder in interface ObjectDataInputpublic Version getWanProtocolVersion()
WanProtocolVersionAwareVersionAware.getVersion() but is used in WAN replication, not in
message exchange inside a single cluster.getWanProtocolVersion in interface WanProtocolVersionAwareVersion.UNKNOWN if not setVersionAware.getVersion()public void setWanProtocolVersion(Version version)
WanProtocolVersionAwareVersionAware.setVersion(Version) but is used in WAN replication,
not in message exchange inside a single cluster.setWanProtocolVersion in interface WanProtocolVersionAwareversion - the WAN protocol versionVersionAware.setVersion(Version)public Version getVersion()
getVersion in interface VersionAwareVersion.UNKNOWN if the version is unknown to the object.public void setVersion(Version version)
setVersion in interface VersionAwareversion - version to setCopyright © 2019 Hazelcast, Inc.. All rights reserved.