Uses of Class
com.google.code.yanf4j.buffer.IoBuffer
Packages that use IoBuffer
Package
Description
IoBuffer from mina
Networking core package
Yanf4j utilities
Memcached protocol codec
Memcached protocol implementations
Memcached text protocol implementations
Manage tcp connection,memcached protocol optimized,and some MBeans for monitor.
XMemcached Utilities
-
Uses of IoBuffer in com.google.code.yanf4j.buffer
Subclasses of IoBuffer in com.google.code.yanf4j.bufferModifier and TypeClassDescriptionclass
A base implementation ofIoBuffer
.private class
class
AIoBuffer
that wraps a buffer and proxies any operations to it.private class
Fields in com.google.code.yanf4j.buffer declared as IoBufferModifier and TypeFieldDescriptionprivate final IoBuffer
IoBufferWrapper.buf
The buffer proxied by this proxy.Methods in com.google.code.yanf4j.buffer that return IoBufferModifier and TypeMethodDescriptionCachedBufferAllocator.allocate
(int requestedCapacity, boolean direct) static IoBuffer
IoBuffer.allocate
(int capacity) Returns the direct or heap buffer which is capable to store the specified amount of bytes.static IoBuffer
IoBuffer.allocate
(int capacity, boolean direct) Returns the buffer which is capable of the specified size.IoBufferAllocator.allocate
(int capacity, boolean direct) Returns the buffer which is capable of the specified size.SimpleBufferAllocator.allocate
(int capacity, boolean direct) final IoBuffer
AbstractIoBuffer.asReadOnlyBuffer()
abstract IoBuffer
IoBuffer.asReadOnlyBuffer()
IoBufferWrapper.asReadOnlyBuffer()
protected abstract IoBuffer
AbstractIoBuffer.asReadOnlyBuffer0()
Implement this method to return the unexpandable read only version of this buffer.protected IoBuffer
CachedBufferAllocator.CachedBuffer.asReadOnlyBuffer0()
protected IoBuffer
SimpleBufferAllocator.SimpleBuffer.asReadOnlyBuffer0()
private IoBuffer
AbstractIoBuffer.autoExpand
(int expectedRemaining) This method forwards the call toAbstractIoBuffer.expand(int)
only when autoExpand property is true.private IoBuffer
AbstractIoBuffer.autoExpand
(int pos, int expectedRemaining) This method forwards the call toAbstractIoBuffer.expand(int)
only when autoExpand property is true.final IoBuffer
AbstractIoBuffer.capacity
(int newCapacity) Increases the capacity of this buffer.abstract IoBuffer
IoBuffer.capacity
(int newCapacity) Increases the capacity of this buffer.IoBufferWrapper.capacity
(int newCapacity) final IoBuffer
AbstractIoBuffer.clear()
abstract IoBuffer
IoBuffer.clear()
IoBufferWrapper.clear()
final IoBuffer
AbstractIoBuffer.compact()
abstract IoBuffer
IoBuffer.compact()
IoBufferWrapper.compact()
final IoBuffer
AbstractIoBuffer.duplicate()
abstract IoBuffer
IoBuffer.duplicate()
IoBufferWrapper.duplicate()
protected abstract IoBuffer
AbstractIoBuffer.duplicate0()
Implement this method to return the unexpandable duplicate of this buffer.protected IoBuffer
CachedBufferAllocator.CachedBuffer.duplicate0()
protected IoBuffer
SimpleBufferAllocator.SimpleBuffer.duplicate0()
final IoBuffer
AbstractIoBuffer.expand
(int expectedRemaining) Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the current position.private IoBuffer
AbstractIoBuffer.expand
(int expectedRemaining, boolean autoExpand) final IoBuffer
AbstractIoBuffer.expand
(int pos, int expectedRemaining) Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the specified position.private IoBuffer
AbstractIoBuffer.expand
(int pos, int expectedRemaining, boolean autoExpand) abstract IoBuffer
IoBuffer.expand
(int expectedRemaining) Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the current position.abstract IoBuffer
IoBuffer.expand
(int position, int expectedRemaining) Changes the capacity and limit of this buffer so this buffer get the specified expectedRemaining room from the specified position.IoBufferWrapper.expand
(int expectedRemaining) IoBufferWrapper.expand
(int pos, int expectedRemaining) AbstractIoBuffer.fill
(byte value, int size) Fills this buffer with the specified value.AbstractIoBuffer.fill
(int size) Fills this buffer withNUL (0x00)
.abstract IoBuffer
IoBuffer.fill
(byte value, int size) Fills this buffer with the specified value.abstract IoBuffer
IoBuffer.fill
(int size) Fills this buffer withNUL (0x00)
.IoBufferWrapper.fill
(byte value, int size) IoBufferWrapper.fill
(int size) AbstractIoBuffer.fillAndReset
(byte value, int size) Fills this buffer with the specified value.AbstractIoBuffer.fillAndReset
(int size) Fills this buffer withNUL (0x00)
.abstract IoBuffer
IoBuffer.fillAndReset
(byte value, int size) Fills this buffer with the specified value.abstract IoBuffer
IoBuffer.fillAndReset
(int size) Fills this buffer withNUL (0x00)
.IoBufferWrapper.fillAndReset
(byte value, int size) IoBufferWrapper.fillAndReset
(int size) final IoBuffer
AbstractIoBuffer.flip()
abstract IoBuffer
IoBuffer.flip()
IoBufferWrapper.flip()
AbstractIoBuffer.get
(byte[] dst) final IoBuffer
AbstractIoBuffer.get
(byte[] dst, int offset, int length) abstract IoBuffer
IoBuffer.get
(byte[] dst) abstract IoBuffer
IoBuffer.get
(byte[] dst, int offset, int length) IoBufferWrapper.get
(byte[] dst) IoBufferWrapper.get
(byte[] dst, int offset, int length) IoBufferWrapper.getParentBuffer()
Returns the parent buffer that this buffer wrapped.final IoBuffer
AbstractIoBuffer.getSlice
(int length) TODO document me.final IoBuffer
AbstractIoBuffer.getSlice
(int index, int length) TODO document me.abstract IoBuffer
IoBuffer.getSlice
(int length) TODO document me.abstract IoBuffer
IoBuffer.getSlice
(int index, int length) TODO document me.IoBufferWrapper.getSlice
(int length) IoBufferWrapper.getSlice
(int index, int length) final IoBuffer
AbstractIoBuffer.limit
(int newLimit) abstract IoBuffer
IoBuffer.limit
(int newLimit) IoBufferWrapper.limit
(int newLimit) final IoBuffer
AbstractIoBuffer.mark()
abstract IoBuffer
IoBuffer.mark()
IoBufferWrapper.mark()
final IoBuffer
AbstractIoBuffer.minimumCapacity
(int minimumCapacity) abstract IoBuffer
IoBuffer.minimumCapacity
(int minimumCapacity) IoBufferWrapper.minimumCapacity
(int minimumCapacity) final IoBuffer
abstract IoBuffer
final IoBuffer
AbstractIoBuffer.position
(int newPosition) abstract IoBuffer
IoBuffer.position
(int newPosition) IoBufferWrapper.position
(int newPosition) final IoBuffer
AbstractIoBuffer.put
(byte b) AbstractIoBuffer.put
(byte[] src) final IoBuffer
AbstractIoBuffer.put
(byte[] src, int offset, int length) final IoBuffer
AbstractIoBuffer.put
(int index, byte b) Writes the content of the specified src into this buffer.final IoBuffer
AbstractIoBuffer.put
(ByteBuffer src) Writes the content of the specified src into this buffer.abstract IoBuffer
IoBuffer.put
(byte b) abstract IoBuffer
IoBuffer.put
(byte[] src) abstract IoBuffer
IoBuffer.put
(byte[] src, int offset, int length) abstract IoBuffer
IoBuffer.put
(int index, byte b) abstract IoBuffer
Writes the content of the specified src into this buffer.abstract IoBuffer
IoBuffer.put
(ByteBuffer src) Writes the content of the specified src into this buffer.IoBufferWrapper.put
(byte b) IoBufferWrapper.put
(byte[] src) IoBufferWrapper.put
(byte[] src, int offset, int length) IoBufferWrapper.put
(int index, byte b) IoBufferWrapper.put
(ByteBuffer src) final IoBuffer
AbstractIoBuffer.putChar
(char value) final IoBuffer
AbstractIoBuffer.putChar
(int index, char value) abstract IoBuffer
IoBuffer.putChar
(char value) abstract IoBuffer
IoBuffer.putChar
(int index, char value) IoBufferWrapper.putChar
(char value) IoBufferWrapper.putChar
(int index, char value) final IoBuffer
AbstractIoBuffer.putDouble
(double value) final IoBuffer
AbstractIoBuffer.putDouble
(int index, double value) abstract IoBuffer
IoBuffer.putDouble
(double value) abstract IoBuffer
IoBuffer.putDouble
(int index, double value) IoBufferWrapper.putDouble
(double value) IoBufferWrapper.putDouble
(int index, double value) Writes an enum's ordinal value to the buffer as a byte.Writes an enum's ordinal value to the buffer as a byte.abstract IoBuffer
Writes an enum's ordinal value to the buffer as a byte.abstract IoBuffer
Writes an enum's ordinal value to the buffer as a byte.AbstractIoBuffer.putEnumInt
(int index, Enum<?> e) Writes an enum's ordinal value to the buffer as an integer.AbstractIoBuffer.putEnumInt
(Enum<?> e) Writes an enum's ordinal value to the buffer as an integer.abstract IoBuffer
IoBuffer.putEnumInt
(int index, Enum<?> e) Writes an enum's ordinal value to the buffer as an integer.abstract IoBuffer
IoBuffer.putEnumInt
(Enum<?> e) Writes an enum's ordinal value to the buffer as an integer.IoBufferWrapper.putEnumInt
(int index, Enum<?> e) IoBufferWrapper.putEnumInt
(Enum<?> e) AbstractIoBuffer.putEnumSet
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a byte sized bit vector.AbstractIoBuffer.putEnumSet
(Set<E> set) Writes the specifiedSet
to the buffer as a byte sized bit vector.IoBuffer.putEnumSet
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a byte sized bit vector.IoBuffer.putEnumSet
(Set<E> set) Writes the specifiedSet
to the buffer as a byte sized bit vector.IoBufferWrapper.putEnumSet
(int index, Set<E> set) IoBufferWrapper.putEnumSet
(Set<E> set) AbstractIoBuffer.putEnumSetInt
(int index, Set<E> set) Writes the specifiedSet
to the buffer as an int sized bit vector.AbstractIoBuffer.putEnumSetInt
(Set<E> set) Writes the specifiedSet
to the buffer as an int sized bit vector.IoBuffer.putEnumSetInt
(int index, Set<E> set) Writes the specifiedSet
to the buffer as an int sized bit vector.IoBuffer.putEnumSetInt
(Set<E> set) Writes the specifiedSet
to the buffer as an int sized bit vector.IoBufferWrapper.putEnumSetInt
(int index, Set<E> set) IoBufferWrapper.putEnumSetInt
(Set<E> set) AbstractIoBuffer.putEnumSetLong
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a long sized bit vector.AbstractIoBuffer.putEnumSetLong
(Set<E> set) Writes the specifiedSet
to the buffer as a long sized bit vector.IoBuffer.putEnumSetLong
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a long sized bit vector.IoBuffer.putEnumSetLong
(Set<E> set) Writes the specifiedSet
to the buffer as a long sized bit vector.IoBufferWrapper.putEnumSetLong
(int index, Set<E> set) IoBufferWrapper.putEnumSetLong
(Set<E> set) AbstractIoBuffer.putEnumSetShort
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a short sized bit vector.AbstractIoBuffer.putEnumSetShort
(Set<E> set) Writes the specifiedSet
to the buffer as a short sized bit vector.IoBuffer.putEnumSetShort
(int index, Set<E> set) Writes the specifiedSet
to the buffer as a short sized bit vector.IoBuffer.putEnumSetShort
(Set<E> set) Writes the specifiedSet
to the buffer as a short sized bit vector.IoBufferWrapper.putEnumSetShort
(int index, Set<E> set) IoBufferWrapper.putEnumSetShort
(Set<E> set) AbstractIoBuffer.putEnumShort
(int index, Enum<?> e) Writes an enum's ordinal value to the buffer as a short.AbstractIoBuffer.putEnumShort
(Enum<?> e) Writes an enum's ordinal value to the buffer as a short.abstract IoBuffer
IoBuffer.putEnumShort
(int index, Enum<?> e) Writes an enum's ordinal value to the buffer as a short.abstract IoBuffer
IoBuffer.putEnumShort
(Enum<?> e) Writes an enum's ordinal value to the buffer as a short.IoBufferWrapper.putEnumShort
(int index, Enum<?> e) IoBufferWrapper.putEnumShort
(Enum<?> e) final IoBuffer
AbstractIoBuffer.putFloat
(float value) final IoBuffer
AbstractIoBuffer.putFloat
(int index, float value) abstract IoBuffer
IoBuffer.putFloat
(float value) abstract IoBuffer
IoBuffer.putFloat
(int index, float value) IoBufferWrapper.putFloat
(float value) IoBufferWrapper.putFloat
(int index, float value) final IoBuffer
AbstractIoBuffer.putInt
(int value) final IoBuffer
AbstractIoBuffer.putInt
(int index, int value) abstract IoBuffer
IoBuffer.putInt
(int value) abstract IoBuffer
IoBuffer.putInt
(int index, int value) IoBufferWrapper.putInt
(int value) IoBufferWrapper.putInt
(int index, int value) final IoBuffer
AbstractIoBuffer.putLong
(int index, long value) final IoBuffer
AbstractIoBuffer.putLong
(long value) abstract IoBuffer
IoBuffer.putLong
(int index, long value) abstract IoBuffer
IoBuffer.putLong
(long value) IoBufferWrapper.putLong
(int index, long value) IoBufferWrapper.putLong
(long value) AbstractIoBuffer.putMediumInt
(int value) Relative put method for writing a medium int value.AbstractIoBuffer.putMediumInt
(int index, int value) Absolute put method for writing a medium int value.abstract IoBuffer
IoBuffer.putMediumInt
(int value) Relative put method for writing a medium int value.abstract IoBuffer
IoBuffer.putMediumInt
(int index, int value) Absolute put method for writing a medium int value.IoBufferWrapper.putMediumInt
(int value) IoBufferWrapper.putMediumInt
(int index, int value) Writes the specified Java object to the buffer.abstract IoBuffer
Writes the specified Java object to the buffer.AbstractIoBuffer.putPrefixedString
(CharSequence val, int prefixLength, int padding, byte padValue, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.AbstractIoBuffer.putPrefixedString
(CharSequence in, int prefixLength, int padding, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.AbstractIoBuffer.putPrefixedString
(CharSequence in, int prefixLength, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.AbstractIoBuffer.putPrefixedString
(CharSequence in, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.abstract IoBuffer
IoBuffer.putPrefixedString
(CharSequence val, int prefixLength, int padding, byte padValue, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.abstract IoBuffer
IoBuffer.putPrefixedString
(CharSequence in, int prefixLength, int padding, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.abstract IoBuffer
IoBuffer.putPrefixedString
(CharSequence in, int prefixLength, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.abstract IoBuffer
IoBuffer.putPrefixedString
(CharSequence in, CharsetEncoder encoder) Writes the content ofin
into this buffer as a string which has a 16-bit length field before the actual encoded string, using the specifiedencoder
.IoBufferWrapper.putPrefixedString
(CharSequence in, int prefixLength, int padding, byte padValue, CharsetEncoder encoder) IoBufferWrapper.putPrefixedString
(CharSequence in, int prefixLength, int padding, CharsetEncoder encoder) IoBufferWrapper.putPrefixedString
(CharSequence in, int prefixLength, CharsetEncoder encoder) IoBufferWrapper.putPrefixedString
(CharSequence in, CharsetEncoder encoder) final IoBuffer
AbstractIoBuffer.putShort
(int index, short value) final IoBuffer
AbstractIoBuffer.putShort
(short value) abstract IoBuffer
IoBuffer.putShort
(int index, short value) abstract IoBuffer
IoBuffer.putShort
(short value) IoBufferWrapper.putShort
(int index, short value) IoBufferWrapper.putShort
(short value) AbstractIoBuffer.putString
(CharSequence val, int fieldSize, CharsetEncoder encoder) Writes the content ofin
into this buffer as aNUL
-terminated string using the specifiedencoder
.AbstractIoBuffer.putString
(CharSequence val, CharsetEncoder encoder) Writes the content ofin
into this buffer using the specifiedencoder
.abstract IoBuffer
IoBuffer.putString
(CharSequence val, int fieldSize, CharsetEncoder encoder) Writes the content ofin
into this buffer as aNUL
-terminated string using the specifiedencoder
.abstract IoBuffer
IoBuffer.putString
(CharSequence val, CharsetEncoder encoder) Writes the content ofin
into this buffer using the specifiedencoder
.IoBufferWrapper.putString
(CharSequence in, int fieldSize, CharsetEncoder encoder) IoBufferWrapper.putString
(CharSequence in, CharsetEncoder encoder) final IoBuffer
AbstractIoBuffer.reset()
abstract IoBuffer
IoBuffer.reset()
IoBufferWrapper.reset()
final IoBuffer
AbstractIoBuffer.rewind()
abstract IoBuffer
IoBuffer.rewind()
IoBufferWrapper.rewind()
final IoBuffer
AbstractIoBuffer.setAutoExpand
(boolean autoExpand) Turns on or off autoExpand.abstract IoBuffer
IoBuffer.setAutoExpand
(boolean autoExpand) Turns on or off autoExpand.IoBufferWrapper.setAutoExpand
(boolean autoExpand) final IoBuffer
AbstractIoBuffer.setAutoShrink
(boolean autoShrink) Turns on or off autoShrink.abstract IoBuffer
IoBuffer.setAutoShrink
(boolean autoShrink) Turns on or off autoShrink.IoBufferWrapper.setAutoShrink
(boolean autoShrink) final IoBuffer
AbstractIoBuffer.shrink()
Changes the capacity of this buffer so this buffer occupies as less memory as possible while retaining the position, limit and the buffer content between the position and limit.abstract IoBuffer
IoBuffer.shrink()
Changes the capacity of this buffer so this buffer occupies as less memory as possible while retaining the position, limit and the buffer content between the position and limit.IoBufferWrapper.shrink()
AbstractIoBuffer.skip
(int size) Forwards the position of this buffer as the specifiedsize
bytes.abstract IoBuffer
IoBuffer.skip
(int size) Forwards the position of this buffer as the specifiedsize
bytes.IoBufferWrapper.skip
(int size) final IoBuffer
AbstractIoBuffer.slice()
abstract IoBuffer
IoBuffer.slice()
IoBufferWrapper.slice()
protected abstract IoBuffer
AbstractIoBuffer.slice0()
Implement this method to return the unexpandable slice of this buffer.protected IoBuffer
CachedBufferAllocator.CachedBuffer.slice0()
protected IoBuffer
SimpleBufferAllocator.SimpleBuffer.slice0()
final IoBuffer
AbstractIoBuffer.sweep()
Clears this buffer and fills its content with NUL.final IoBuffer
AbstractIoBuffer.sweep
(byte value) double Clears this buffer and fills its content with value.abstract IoBuffer
IoBuffer.sweep()
Clears this buffer and fills its content with NUL.abstract IoBuffer
IoBuffer.sweep
(byte value) double Clears this buffer and fills its content with value.IoBufferWrapper.sweep()
IoBufferWrapper.sweep
(byte value) CachedBufferAllocator.wrap
(ByteBuffer nioBuffer) static IoBuffer
IoBuffer.wrap
(byte[] byteArray) Wraps the specified byte array into MINA heap buffer.static IoBuffer
IoBuffer.wrap
(byte[] byteArray, int offset, int length) Wraps the specified byte array into MINA heap buffer.static IoBuffer
IoBuffer.wrap
(ByteBuffer nioBuffer) Wraps the specified NIOByteBuffer
into MINA buffer.IoBufferAllocator.wrap
(ByteBuffer nioBuffer) Wraps the specified NIOByteBuffer
into MINA buffer.SimpleBufferAllocator.wrap
(ByteBuffer nioBuffer) Methods in com.google.code.yanf4j.buffer with parameters of type IoBufferModifier and TypeMethodDescriptionint
int
static String
IoBufferHexDumper.getHexdump
(IoBuffer in, int lengthLimit) Dumps anIoBuffer
to a hex formatted string.Writes the content of the specified src into this buffer.abstract IoBuffer
Writes the content of the specified src into this buffer.Constructors in com.google.code.yanf4j.buffer with parameters of type IoBuffer -
Uses of IoBuffer in com.google.code.yanf4j.core
Methods in com.google.code.yanf4j.core that return IoBufferMethods in com.google.code.yanf4j.core with parameters of type IoBuffer -
Uses of IoBuffer in com.google.code.yanf4j.core.impl
Fields in com.google.code.yanf4j.core.impl declared as IoBufferModifier and TypeFieldDescriptionprotected IoBuffer
WriteMessageImpl.buffer
(package private) static final IoBuffer
ByteBufferCodecFactory.EMPTY_BUFFER
protected IoBuffer
AbstractSession.readBuffer
static final IoBuffer
TextLineCodecFactory.SPLIT
Methods in com.google.code.yanf4j.core.impl that return IoBufferModifier and TypeMethodDescriptionAbstractSession.getReadBuffer()
final IoBuffer
WriteMessageImpl.getWriteBuffer()
Methods in com.google.code.yanf4j.core.impl with parameters of type IoBufferModifier and TypeMethodDescriptionvoid
AbstractSession.setReadBuffer
(IoBuffer readBuffer) final void
WriteMessageImpl.setWriteBuffer
(IoBuffer buffers) -
Uses of IoBuffer in com.google.code.yanf4j.nio.impl
Methods in com.google.code.yanf4j.nio.impl with parameters of type IoBufferModifier and TypeMethodDescriptionprotected final Object
NioTCPSession.blockingWrite
(SelectableChannel channel, WriteMessage message, IoBuffer writeBuffer) Blocking write using temp selectorprotected final long
AbstractNioSession.doRealWrite
(SelectableChannel channel, IoBuffer buffer) -
Uses of IoBuffer in com.google.code.yanf4j.util
Methods in com.google.code.yanf4j.util with parameters of type IoBufferModifier and TypeMethodDescriptionint
ByteBufferMatcher.matchFirst
(IoBuffer buffer) final int
ShiftAndByteBufferMatcher.matchFirst
(IoBuffer buffer) final int
ShiftOrByteBufferMatcher.matchFirst
(IoBuffer buffer) private void
ShiftAndByteBufferMatcher.preprocess
(IoBuffer pat) Ԥ����private void
ShiftOrByteBufferMatcher.preprocess
(IoBuffer pat) Ԥ����Constructors in com.google.code.yanf4j.util with parameters of type IoBufferModifierConstructorDescription -
Uses of IoBuffer in net.rubyeye.xmemcached.codec
Methods in net.rubyeye.xmemcached.codec that return IoBufferModifier and TypeMethodDescriptionMethods in net.rubyeye.xmemcached.codec with parameters of type IoBuffer -
Uses of IoBuffer in net.rubyeye.xmemcached.command
Fields in net.rubyeye.xmemcached.command declared as IoBufferMethods in net.rubyeye.xmemcached.command that return IoBufferModifier and TypeMethodDescriptionfinal IoBuffer
Command.getIoBuffer()
final IoBuffer
Command.getWriteBuffer()
Methods in net.rubyeye.xmemcached.command with parameters of type IoBufferModifier and TypeMethodDescriptionfinal void
Command.setIoBuffer
(IoBuffer ioBuffer) void
Command.setWriteBuffer
(IoBuffer buffers) -
Uses of IoBuffer in net.rubyeye.xmemcached.command.text
Fields in net.rubyeye.xmemcached.command.text declared as IoBuffer -
Uses of IoBuffer in net.rubyeye.xmemcached.impl
Fields in net.rubyeye.xmemcached.impl declared as IoBufferFields in net.rubyeye.xmemcached.impl with type parameters of type IoBufferModifier and TypeFieldDescriptionOptimizer.BinaryGetQCollector.bufferList
Optimizer.BinarySetQCollector.bufferList
-
Uses of IoBuffer in net.rubyeye.xmemcached.utils
Methods in net.rubyeye.xmemcached.utils with parameters of type IoBufferModifier and TypeMethodDescriptionstatic final void
ByteUtils.setArguments
(IoBuffer bb, Object... args)