com.esotericsoftware.kryo.io
Class ByteBufferInputStream
java.lang.Object
java.io.InputStream
com.esotericsoftware.kryo.io.ByteBufferInputStream
- All Implemented Interfaces:
- java.io.Closeable
public class ByteBufferInputStream
- extends java.io.InputStream
An InputStream whose source is a ByteBuffer
.
Methods inherited from class java.io.InputStream |
close, mark, markSupported, read, reset, skip |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ByteBufferInputStream
public ByteBufferInputStream()
ByteBufferInputStream
public ByteBufferInputStream(int bufferSize)
- Creates a stream with a new non-direct buffer of the specified size. The position and limit of the buffer is zero.
ByteBufferInputStream
public ByteBufferInputStream(java.nio.ByteBuffer byteBuffer)
- Creates an uninitialized stream that cannot be used until
setByteBuffer(ByteBuffer)
is called.
getByteBuffer
public java.nio.ByteBuffer getByteBuffer()
setByteBuffer
public void setByteBuffer(java.nio.ByteBuffer byteBuffer)
read
public int read()
throws java.io.IOException
- Specified by:
read
in class java.io.InputStream
- Throws:
java.io.IOException
read
public int read(byte[] bytes,
int offset,
int length)
throws java.io.IOException
- Overrides:
read
in class java.io.InputStream
- Throws:
java.io.IOException
available
public int available()
throws java.io.IOException
- Overrides:
available
in class java.io.InputStream
- Throws:
java.io.IOException