public class ObjectInputHandlingInputStream extends Object implements ObjectInput
| Modifier and Type | Field and Description |
|---|---|
protected ObjectInput |
decorated |
protected ExecutorService |
inputStreamFiller |
protected static org.slf4j.Logger |
LOGGER |
protected AtomicReference<Exception> |
ouch |
protected AtomicBoolean |
pipedOutputStreamIsOpen |
| Constructor and Description |
|---|
ObjectInputHandlingInputStream(ObjectInput decorated)
Build a ObjectInputHandlingInputStream with an asynchronous single-thread executor handling inputStream reading
|
ObjectInputHandlingInputStream(ObjectInput decorated,
ExecutorService inputStreamFiller) |
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
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() |
long |
readLong() |
Object |
readObject() |
short |
readShort() |
int |
readUnsignedByte() |
int |
readUnsignedShort() |
String |
readUTF() |
protected void |
rethrowException() |
long |
skip(long n) |
int |
skipBytes(int n) |
protected static final org.slf4j.Logger LOGGER
protected final ObjectInput decorated
protected final ExecutorService inputStreamFiller
protected final AtomicBoolean pipedOutputStreamIsOpen
protected final AtomicReference<Exception> ouch
public ObjectInputHandlingInputStream(ObjectInput decorated)
decorated - public ObjectInputHandlingInputStream(ObjectInput decorated, ExecutorService inputStreamFiller)
public Object readObject() throws ClassNotFoundException, IOException
readObject in interface ObjectInputClassNotFoundExceptionIOExceptionprotected void rethrowException()
throws EOFException,
IOException
EOFExceptionIOExceptionpublic 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 String readLine() throws IOException
readLine in interface DataInputIOExceptionpublic String readUTF() throws IOException
readUTF in interface DataInputIOExceptionpublic int read()
throws IOException
read in interface ObjectInputIOExceptionpublic int read(byte[] b)
throws IOException
read in interface ObjectInputIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in interface ObjectInputIOExceptionpublic long skip(long n)
throws IOException
skip in interface ObjectInputIOExceptionpublic int available()
throws IOException
available in interface ObjectInputIOExceptionpublic void close()
throws IOException
close in interface ObjectInputclose in interface AutoCloseableIOExceptionCopyright © 2014–2017 Pivotal Software, Inc.. All rights reserved.