|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjava.io.InputStream
org.jboss.netty.handler.codec.serialization.ObjectDecoderInputStream
public class ObjectDecoderInputStream

An ObjectInput which is interoperable with ObjectEncoder
and ObjectEncoderOutputStream.
| Constructor Summary | |
|---|---|
ObjectDecoderInputStream(InputStream in)
Creates a new ObjectInput. |
|
ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader)
Creates a new ObjectInput. |
|
ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader,
int maxObjectSize)
Creates a new ObjectInput. |
|
ObjectDecoderInputStream(InputStream in,
int maxObjectSize)
Creates a new ObjectInput. |
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
|
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(byte[] b)
|
int |
read(byte[] b,
int off,
int len)
|
boolean |
readBoolean()
|
byte |
readByte()
|
char |
readChar()
|
double |
readDouble()
|
float |
readFloat()
|
void |
readFully(byte[] b)
|
void |
readFully(byte[] b,
int off,
int len)
|
int |
readInt()
|
String |
readLine()
Deprecated. |
long |
readLong()
|
Object |
readObject()
|
short |
readShort()
|
int |
readUnsignedByte()
|
int |
readUnsignedShort()
|
String |
readUTF()
|
void |
reset()
|
long |
skip(long n)
|
int |
skipBytes(int n)
|
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ObjectDecoderInputStream(InputStream in)
ObjectInput.
in - the InputStream where the serialized form will be
read from
public ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader)
ObjectInput.
in - the InputStream where the serialized form will be
read fromclassLoader - the ClassLoader which will load the class of the
serialized object
public ObjectDecoderInputStream(InputStream in,
int maxObjectSize)
ObjectInput.
in - the InputStream where the serialized form will be
read frommaxObjectSize - the maximum byte length of the serialized object. if the length
of the received object is greater than this value,
a StreamCorruptedException will be raised.
public ObjectDecoderInputStream(InputStream in,
ClassLoader classLoader,
int maxObjectSize)
ObjectInput.
in - the InputStream where the serialized form will be
read fromclassLoader - the ClassLoader which will load the class of the
serialized objectmaxObjectSize - the maximum byte length of the serialized object. if the length
of the received object is greater than this value,
a StreamCorruptedException will be raised.| Method Detail |
|---|
public Object readObject()
throws ClassNotFoundException,
IOException
readObject in interface ObjectInputClassNotFoundException
IOException
public int available()
throws IOException
available in interface ObjectInputavailable in class InputStreamIOException
public void close()
throws IOException
close in interface Closeableclose in interface ObjectInputclose in class InputStreamIOExceptionpublic void mark(int readlimit)
mark in class InputStreampublic boolean markSupported()
markSupported in class InputStream
public int read()
throws IOException
read in interface ObjectInputread in class InputStreamIOException
public final int read(byte[] b,
int off,
int len)
throws IOException
read in interface ObjectInputread in class InputStreamIOException
public final int read(byte[] b)
throws IOException
read in interface ObjectInputread in class InputStreamIOException
public final boolean readBoolean()
throws IOException
readBoolean in interface DataInputIOException
public final byte readByte()
throws IOException
readByte in interface DataInputIOException
public final char readChar()
throws IOException
readChar in interface DataInputIOException
public final double readDouble()
throws IOException
readDouble in interface DataInputIOException
public final float readFloat()
throws IOException
readFloat in interface DataInputIOException
public final void readFully(byte[] b,
int off,
int len)
throws IOException
readFully in interface DataInputIOException
public final void readFully(byte[] b)
throws IOException
readFully in interface DataInputIOException
public final int readInt()
throws IOException
readInt in interface DataInputIOException
@Deprecated
public final String readLine()
throws IOException
readLine in interface DataInputIOException
public final long readLong()
throws IOException
readLong in interface DataInputIOException
public final short readShort()
throws IOException
readShort in interface DataInputIOException
public final int readUnsignedByte()
throws IOException
readUnsignedByte in interface DataInputIOException
public final int readUnsignedShort()
throws IOException
readUnsignedShort in interface DataInputIOException
public final String readUTF()
throws IOException
readUTF in interface DataInputIOException
public void reset()
throws IOException
reset in class InputStreamIOException
public long skip(long n)
throws IOException
skip in interface ObjectInputskip in class InputStreamIOException
public final int skipBytes(int n)
throws IOException
skipBytes in interface DataInputIOException
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||