public class CompositeByteArrayRelativeReader extends Object implements IoRelativeReader
CompositeByteArray. Using this interface has the advantage
that it can be automatically determined when a component
ByteArray can no longer be read, and thus components can be
automatically freed. This makes it easier to use pooling for underlying
ByteArrays.| Modifier and Type | Field and Description |
|---|---|
protected CompositeByteArray |
cba
The underlying
CompositeByteArray. |
protected ByteArray.Cursor |
cursor
A cursor of the underlying
CompositeByteArray. |
| Constructor and Description |
|---|
CompositeByteArrayRelativeReader(CompositeByteArray cba,
boolean autoFree)
Creates a new instance of CompositeByteArrayRelativeReader.
|
| Modifier and Type | Method and Description |
|---|---|
void |
append(ByteArray ba)
Make a
ByteArray available for access at the end of this object. |
protected void |
cursorPassedFirstComponent()
Called whenever the cursor has passed from the
cba's
first component. |
void |
free()
Free all resources associated with this object.
|
byte |
get() |
void |
get(IoBuffer bb)
places the data starting at current position into the
supplied
IoBuffer |
char |
getChar() |
double |
getDouble() |
float |
getFloat() |
int |
getIndex() |
int |
getInt() |
long |
getLong() |
int |
getRemaining() |
short |
getShort() |
boolean |
hasRemaining() |
int |
last() |
ByteOrder |
order() |
void |
skip(int length)
Advances the reader by the given number of bytes.
|
ByteArray |
slice(int length) |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitgetRemaining, hasRemaining, orderprotected final CompositeByteArray cba
CompositeByteArray.protected final ByteArray.Cursor cursor
CompositeByteArray. This
cursor is never moved directly; its position only changes through calls
to relative read or write methods.public CompositeByteArrayRelativeReader(CompositeByteArray cba, boolean autoFree)
cba - The backing ByteArrayautoFree - If data should be freed once it has been passed in the listprotected void cursorPassedFirstComponent()
cba's
first component. As the first component is no longer used, this provides
a good opportunity for subclasses to perform some action on it (such as
freeing it).public void skip(int length)
skip in interface IoRelativeReaderlength - the number of bytes to skippublic ByteArray slice(int length)
slice in interface IoRelativeReaderlength - The number of bytes to getpublic byte get()
get in interface IoRelativeReaderpublic void get(IoBuffer bb)
IoBufferget in interface IoRelativeReaderbb - The IoBuffer that will contain the read bytespublic short getShort()
getShort in interface IoRelativeReadershort and advances the reader.public int getInt()
getInt in interface IoRelativeReaderint and advances the reader.public long getLong()
getLong in interface IoRelativeReaderlong and advances the reader.public float getFloat()
getFloat in interface IoRelativeReaderfloat and advances the reader.public double getDouble()
getDouble in interface IoRelativeReaderdouble and advances the reader.public char getChar()
getChar in interface IoRelativeReaderchar and advances the reader.public final int getRemaining()
public final boolean hasRemaining()
TRUE if there are some more bytespublic ByteOrder order()
public final void append(ByteArray ba)
ByteArray available for access at the end of this object.ba - The ByteArray to appendpublic final void free()
public final int getIndex()
public final int last()
Copyright © 2004–2024 Apache MINA Project. All rights reserved.