Package com.tangosol.io.journal
Class FlashJournalRM.Buffer
java.lang.Object
com.tangosol.io.journal.FlashJournalRM.Buffer
- Enclosing class:
FlashJournalRM
A Buffer is a handy shell with some helper methods around a byte[] and
a ByteBuffer.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbyte[]
Obtain the underlying byte[].Obtain the ByteBuffer for this buffer.getNext()
Get the next buffer in a linked list of buffers.void
Copy the passed Binary value into the buffer at the specified offset and using the passed overlay.void
Set the next buffer in a linked list of buffers.void
setOverlay
(byte[] abOv) Specify an overlay byte[].toString()
-
Constructor Details
-
Buffer
public Buffer(int cbBuffer) Instantiate a buffer.- Parameters:
cbBuffer
- the size of the buffer
-
-
Method Details
-
getByteArray
public byte[] getByteArray()Obtain the underlying byte[].- Returns:
- the byte[] for this buffer
-
getByteBuffer
Obtain the ByteBuffer for this buffer.- Returns:
- an NIO ByteBuffer for the underlying byte[]
-
setOverlay
public void setOverlay(byte[] abOv) Specify an overlay byte[].- Parameters:
abOv
- the overlay byte[]
-
render
Copy the passed Binary value into the buffer at the specified offset and using the passed overlay.- Parameters:
bin
- the Binary value to copy into this bufferof
- the offset of this buffer to copy the passed Binary to
-
getNext
Get the next buffer in a linked list of buffers. This is used by the pool implementation.- Returns:
- the next buffer in a linked list of buffers
-
setNext
Set the next buffer in a linked list of buffers. This is used by the pool implementation.- Parameters:
buf
- the next buffer in a linked list of buffers
-
toString
-