| Package | Description |
|---|---|
| ds.funnel.data.buffer | |
| ds.funnel.data.msglink.protocol3 | |
| ds.synapse.files.sdht |
| Modifier and Type | Class and Description |
|---|---|
class |
StreamBufferArrayImpl |
class |
StreamBufferImpl |
| Modifier and Type | Method and Description |
|---|---|
StreamBuffer |
StreamBufferArrayImpl.advance(int relPosition) |
StreamBuffer |
StreamBufferImpl.advance(int relPosition) |
StreamBuffer |
StreamBuffer.advance(int relPosition)
Adjust the position by a relative amount.
|
StreamBuffer |
StreamBufferArrayImpl.clear() |
StreamBuffer |
StreamBufferImpl.clear() |
StreamBuffer |
StreamBuffer.clear()
Clear the contents of the stream buffer, setting position and length to 0.
|
StreamBuffer |
StreamBufferArrayImpl.clear(int clearBytes) |
StreamBuffer |
StreamBufferImpl.clear(int clearBytes) |
StreamBuffer |
StreamBuffer.clear(int clearBytes)
Clear bytes from the current position, cutting them from the buffer.
|
StreamBuffer |
StreamBufferImpl.debugCopy() |
StreamBuffer |
StreamBufferArrayImpl.duplicate() |
StreamBuffer |
StreamBufferImpl.duplicate() |
StreamBuffer |
StreamBuffer.duplicate() |
StreamBuffer |
StreamBufferArrayImpl.duplicate(int viewLength) |
StreamBuffer |
StreamBufferImpl.duplicate(int viewLength) |
StreamBuffer |
StreamBuffer.duplicate(int viewLength) |
StreamBuffer |
StreamBufferArrayImpl.flip() |
StreamBuffer |
StreamBufferImpl.flip() |
StreamBuffer |
StreamBuffer.flip()
Sets the position of the buffer to 0 and resets the insert mode.
|
StreamBuffer |
StreamBufferArrayImpl.insert(boolean insert) |
StreamBuffer |
StreamBufferImpl.insert(boolean insert) |
StreamBuffer |
StreamBuffer.insert(boolean newInsert)
Set the current insert mode.
|
StreamBuffer |
StreamBufferArrayImpl.position(int newPosition) |
StreamBuffer |
StreamBufferImpl.position(int newPosition) |
StreamBuffer |
StreamBuffer.position(int newPosition)
Set the current buffer position.
|
StreamBuffer |
StreamBufferArrayImpl.put(byte value) |
StreamBuffer |
StreamBufferImpl.put(byte value) |
StreamBuffer |
StreamBuffer.put(byte value)
Write a byte to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.put(byte[] src) |
StreamBuffer |
StreamBufferImpl.put(byte[] src) |
StreamBuffer |
StreamBuffer.put(byte[] src)
Write a byte array to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.put(byte[] src,
int offset,
int putLength) |
StreamBuffer |
StreamBufferImpl.put(byte[] src,
int offset,
int putLength) |
StreamBuffer |
StreamBuffer.put(byte[] src,
int offset,
int length)
Write part of a byte array to the underlying buffers, starting at the
provided offset and limited by the provided length, allocating more if
needed.
|
StreamBuffer |
StreamBufferArrayImpl.put(java.nio.ByteBuffer... srcBuffers) |
StreamBuffer |
StreamBufferImpl.put(java.nio.ByteBuffer... srcBuffers) |
StreamBuffer |
StreamBuffer.put(java.nio.ByteBuffer... srcBuffers)
Write ByteBuffer contents to the underlying buffers,
allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putChar(char value) |
StreamBuffer |
StreamBufferImpl.putChar(char value) |
StreamBuffer |
StreamBuffer.putChar(char value)
Write a char to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putDouble(double value) |
StreamBuffer |
StreamBufferImpl.putDouble(double value) |
StreamBuffer |
StreamBuffer.putDouble(double value)
Write a double to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putFloat(float value) |
StreamBuffer |
StreamBufferImpl.putFloat(float value) |
StreamBuffer |
StreamBuffer.putFloat(float value)
Write a float to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putInt(int value) |
StreamBuffer |
StreamBufferImpl.putInt(int value) |
StreamBuffer |
StreamBuffer.putInt(int value)
Write an integer to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putLong(long value) |
StreamBuffer |
StreamBufferImpl.putLong(long value) |
StreamBuffer |
StreamBuffer.putLong(long value)
Write a long to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.putNoCopy(java.nio.ByteBuffer... ncBuffers) |
StreamBuffer |
StreamBufferImpl.putNoCopy(java.nio.ByteBuffer... ncBuffers) |
StreamBuffer |
StreamBuffer.putNoCopy(java.nio.ByteBuffer... ncBuffers)
Add ByteBuffers to the list of underlying buffers, the position is
advanced by the content length.
|
StreamBuffer |
StreamBufferArrayImpl.putShort(short value) |
StreamBuffer |
StreamBufferImpl.putShort(short value) |
StreamBuffer |
StreamBuffer.putShort(short value)
Write a short to the underlying buffers, allocating more if needed.
|
StreamBuffer |
StreamBufferArrayImpl.rewind() |
StreamBuffer |
StreamBufferImpl.rewind() |
StreamBuffer |
StreamBuffer.rewind()
Sets the position of the buffer to 0 and resets the insert mode.
|
| Modifier and Type | Method and Description |
|---|---|
static void |
StreamBufferTest.checkArrays(StreamBuffer sb) |
static void |
StreamBufferTest.checkInsert(StreamBuffer sb) |
static java.lang.String |
StreamBufferTest.checkInts(StreamBuffer sb,
int numInts) |
static void |
StreamBufferTest.checkTypes(StreamBuffer sb) |
| Modifier and Type | Method and Description |
|---|---|
StreamBuffer |
MessageFormat.getBuffer() |
StreamBuffer |
MessageBase.marshallToBuffer(int inLinkID,
long inSeqNum)
Update the header and return a new StreamBuffer view of the data for writing.
|
| Constructor and Description |
|---|
MessageFormat(StreamBuffer inBuffer) |
| Modifier and Type | Method and Description |
|---|---|
StreamBuffer |
MsgFilePut.getDataView() |