Uses of Interface
com.tangosol.io.WriteBuffer
-
Packages that use WriteBuffer Package Description com.tangosol.io Contains classes providing cache persistence of serialized objects.com.tangosol.io.nio Contains classes related to J2SE 1.4 NIO functionality.com.tangosol.util Contains various generic utilities. -
-
Uses of WriteBuffer in com.tangosol.io
Classes in com.tangosol.io that implement WriteBuffer Modifier and Type Class Description class
AbstractWriteBuffer
The AbstractWriteBuffer is a partial implementation of the WriteBuffer interface intended to be used as a base class for easily creating concrete WriteBuffer implementations.class
ByteArrayWriteBuffer
ByteArrayWriteBuffer is an implementation of WriteBuffer on a byte array.class
DelegatingWriteBuffer
A DelegatingWriteBuffer is a WriteBuffer that writes through to an underlying (or "containing") WriteBuffer.class
MultiBufferWriteBuffer
The MultiBufferWriteBuffer is used to present a single WriteBuffer that collects together a sequence of underlying WriteBuffer objects, and which grows by allocating additional WriteBuffer objects as necessary.Fields in com.tangosol.io declared as WriteBuffer Modifier and Type Field Description protected WriteBuffer
DelegatingWriteBuffer. m_buf
The WriteBuffer to delegate to; the "containing" WriteBuffer.Methods in com.tangosol.io that return WriteBuffer Modifier and Type Method Description protected WriteBuffer
MultiBufferWriteBuffer. addBuffer()
Once the current buffer is full, allocate a new one and make it the current buffer.WriteBuffer
ByteArrayWriteBuffer.Allocator. allocate(int cbPreviousTotal)
Allocate a new ByteArrayWriteBuffer.WriteBuffer
MultiBufferWriteBuffer.WriteBufferPool. allocate(int cbPreviousTotal)
Allocate a WriteBuffer for use by the MultiBufferWriteBuffer.WriteBuffer
AbstractWriteBuffer.AbstractBufferOutput. getBuffer()
Get the WriteBuffer object that this BufferOutput is writing to.WriteBuffer
MultiBufferWriteBuffer. getBuffer(int iBuffer)
Obtain the specified buffer.WriteBuffer
SizeEstimatingBufferOutput. getBuffer()
WriteBuffer
WrapperBufferOutput. getBuffer()
Get the WriteBuffer object that this BufferOutput is writing to.WriteBuffer
WriteBuffer.BufferOutput. getBuffer()
Get the WriteBuffer object that this BufferOutput is writing to.protected WriteBuffer
MultiBufferWriteBuffer. getCurrentBuffer()
Obtain the current buffer.WriteBuffer
AbstractWriteBuffer. getWriteBuffer(int of)
Obtain a WriteBuffer starting at a particular offset within this WriteBuffer.WriteBuffer
AbstractWriteBuffer. getWriteBuffer(int of, int cb)
Obtain a WriteBuffer for a portion of this WriteBuffer.WriteBuffer
WriteBuffer. getWriteBuffer(int of)
Obtain a WriteBuffer starting at a particular offset within this WriteBuffer.WriteBuffer
WriteBuffer. getWriteBuffer(int of, int cb)
Obtain a WriteBuffer for a portion of this WriteBuffer.Methods in com.tangosol.io with parameters of type WriteBuffer Modifier and Type Method Description void
ByteArrayWriteBuffer.Allocator. release(WriteBuffer buffer)
Release the supplied buffer into the pool.void
MultiBufferWriteBuffer.WriteBufferPool. release(WriteBuffer buffer)
Returns a WriteBuffer to the pool.Constructors in com.tangosol.io with parameters of type WriteBuffer Constructor Description ByteArrayWriteBuffer(WriteBuffer buffer, int i, int cb)
Create a new ByteArrayWriteBuffer based on a region of an already existing WriteBuffer.DelegatingWriteBuffer(WriteBuffer buf, int of, int cb)
Construct a DelegatingWriteBuffer that will delegate to the containing WriteBuffer. -
Uses of WriteBuffer in com.tangosol.io.nio
Classes in com.tangosol.io.nio that implement WriteBuffer Modifier and Type Class Description class
ByteBufferWriteBuffer
A WriteBuffer implementation on top of a Java NIO ByteBuffer. -
Uses of WriteBuffer in com.tangosol.util
Classes in com.tangosol.util that implement WriteBuffer Modifier and Type Class Description class
BinaryWriteBuffer
a WriteBuffer implementation whose primary purpose is to be used to create Binary objects.Methods in com.tangosol.util that return WriteBuffer Modifier and Type Method Description WriteBuffer
ExternalizableHelper.Stats. allocate(int cbPreviousTotal)
Allocate a WriteBuffer for use by the MultiBufferWriteBuffer.Methods in com.tangosol.util with parameters of type WriteBuffer Modifier and Type Method Description void
ExternalizableHelper.Stats. release(WriteBuffer buffer)
Returns a WriteBuffer to the pool.static Binary
ExternalizableHelper. toBinary(Object o, Serializer serializer, WriteBuffer buf)
Write an object into a Binary object using the specified Serializer.
-