|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.io.InputStream
org.elasticsearch.common.io.stream.StreamInput
org.elasticsearch.transport.netty.ChannelBufferStreamInput
public class ChannelBufferStreamInput
A Netty ChannelBuffer based StreamInput.
| Field Summary |
|---|
| Fields inherited from class org.elasticsearch.common.io.stream.StreamInput |
|---|
chararr |
| Constructor Summary | |
|---|---|
ChannelBufferStreamInput(org.elasticsearch.common.netty.buffer.ChannelBuffer buffer,
int length)
|
|
| Method Summary | |
|---|---|
int |
available()
|
void |
close()
Closes the stream to further operations. |
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(byte[] b,
int off,
int len)
|
byte |
readByte()
Reads and returns a single byte. |
int |
readBytes()
Returns the number of read bytes by this stream so far. |
void |
readBytes(byte[] b,
int offset,
int len)
Reads a specified number of bytes into an array at the specified offset. |
void |
reset()
Resets the stream. |
long |
skip(long n)
|
int |
skipBytes(int n)
|
| Methods inherited from class org.elasticsearch.common.io.stream.StreamInput |
|---|
readBoolean, readDouble, readFloat, readFully, readInt, readLong, readShort, readUTF, readVInt, readVLong |
| Methods inherited from class java.io.InputStream |
|---|
read |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ChannelBufferStreamInput(org.elasticsearch.common.netty.buffer.ChannelBuffer buffer,
int length)
| Method Detail |
|---|
public int readBytes()
public int available()
throws java.io.IOException
available in class java.io.InputStreamjava.io.IOExceptionpublic void mark(int readlimit)
mark in class java.io.InputStreampublic boolean markSupported()
markSupported in class java.io.InputStream
public int read()
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOException
public int read(byte[] b,
int off,
int len)
throws java.io.IOException
read in class java.io.InputStreamjava.io.IOException
public void reset()
throws java.io.IOException
StreamInput
reset in class StreamInputjava.io.IOException
public long skip(long n)
throws java.io.IOException
skip in class java.io.InputStreamjava.io.IOException
public int skipBytes(int n)
throws java.io.IOException
java.io.IOException
public byte readByte()
throws java.io.IOException
StreamInput
readByte in class StreamInputjava.io.IOException
public void readBytes(byte[] b,
int offset,
int len)
throws java.io.IOException
StreamInput
readBytes in class StreamInputb - the array to read bytes intooffset - the offset in the array to start storing byteslen - the number of bytes to read
java.io.IOException
public void close()
throws java.io.IOException
StreamInput
close in interface java.io.Closeableclose in class StreamInputjava.io.IOException
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||