void |
ActiveMQBuffer.getBytes(int index,
ActiveMQBuffer dst) |
Transfers this buffer's data to the specified destination starting at
the specified absolute index until the destination becomes
non-writable.
|
void |
ActiveMQBuffer.getBytes(int index,
ActiveMQBuffer dst,
int length) |
Transfers this buffer's data to the specified destination starting at
the specified absolute index.
|
void |
ActiveMQBuffer.getBytes(int index,
ActiveMQBuffer dst,
int dstIndex,
int length) |
Transfers this buffer's data to the specified destination starting at
the specified absolute index.
|
void |
ActiveMQBuffer.readBytes(ActiveMQBuffer dst) |
Transfers this buffer's data to the specified destination starting at
the current readerIndex until the destination becomes
non-writable, and increases the readerIndex by the number of the
transferred bytes.
|
void |
ActiveMQBuffer.readBytes(ActiveMQBuffer dst,
int length) |
Transfers this buffer's data to the specified destination starting at
the current readerIndex and increases the readerIndex
by the number of the transferred bytes (= length).
|
void |
ActiveMQBuffer.readBytes(ActiveMQBuffer dst,
int dstIndex,
int length) |
Transfers this buffer's data to the specified destination starting at
the current readerIndex and increases the readerIndex
by the number of the transferred bytes (= length).
|
void |
ActiveMQBuffer.setBytes(int index,
ActiveMQBuffer src) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index until the destination becomes
unreadable.
|
void |
ActiveMQBuffer.setBytes(int index,
ActiveMQBuffer src,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index.
|
void |
ActiveMQBuffer.setBytes(int index,
ActiveMQBuffer src,
int srcIndex,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the specified absolute index.
|
void |
ActiveMQBuffer.writeBytes(ActiveMQBuffer src,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex and increases the writerIndex
by the number of the transferred bytes (= length).
|
void |
ActiveMQBuffer.writeBytes(ActiveMQBuffer src,
int srcIndex,
int length) |
Transfers the specified source buffer's data to this buffer starting at
the current writerIndex and increases the writerIndex
by the number of the transferred bytes (= length).
|