Package net.rubyeye.xmemcached.buffer
Interface IoBuffer
-
- All Known Implementing Classes:
CachedBufferAllocator.CachedIoBuffer,SimpleIoBuffer
@Deprecated public interface IoBuffer
Deprecated.ByteBuffer wrapper- Author:
- dennis
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description intcapacity()Deprecated.voidclear()Deprecated.voidflip()Deprecated.voidfree()Deprecated.ByteBuffergetByteBuffer()Deprecated.ByteBuffer[]getByteBuffers()Deprecated.booleanhasRemaining()Deprecated.booleanisDirect()Deprecated.intlimit()Deprecated.voidlimit(int limit)Deprecated.voidmark()Deprecated.ByteOrderorder()Deprecated.voidorder(ByteOrder byteOrder)Deprecated.intposition()Deprecated.voidposition(int pos)Deprecated.voidput(byte b)Deprecated.voidput(byte[] bytes)Deprecated.voidput(ByteBuffer buff)Deprecated.voidputInt(int i)Deprecated.voidputLong(long l)Deprecated.voidputShort(short s)Deprecated.intremaining()Deprecated.voidreset()Deprecated.
-
-
-
Method Detail
-
capacity
int capacity()
Deprecated.
-
clear
void clear()
Deprecated.
-
flip
void flip()
Deprecated.
-
free
void free()
Deprecated.
-
getByteBuffer
ByteBuffer getByteBuffer()
Deprecated.
-
getByteBuffers
ByteBuffer[] getByteBuffers()
Deprecated.
-
hasRemaining
boolean hasRemaining()
Deprecated.
-
limit
int limit()
Deprecated.
-
limit
void limit(int limit)
Deprecated.
-
mark
void mark()
Deprecated.
-
position
int position()
Deprecated.
-
position
void position(int pos)
Deprecated.
-
put
void put(ByteBuffer buff)
Deprecated.
-
put
void put(byte b)
Deprecated.
-
putShort
void putShort(short s)
Deprecated.
-
putInt
void putInt(int i)
Deprecated.
-
putLong
void putLong(long l)
Deprecated.
-
put
void put(byte[] bytes)
Deprecated.
-
remaining
int remaining()
Deprecated.
-
reset
void reset()
Deprecated.
-
isDirect
boolean isDirect()
Deprecated.
-
order
void order(ByteOrder byteOrder)
Deprecated.
-
order
ByteOrder order()
Deprecated.
-
-