Uses of Interface
com.alibaba.dubbo.remoting.buffer.ChannelBuffer

Packages that use ChannelBuffer
com.alibaba.dubbo.remoting   
com.alibaba.dubbo.remoting.buffer   
com.alibaba.dubbo.remoting.exchange.codec   
com.alibaba.dubbo.remoting.telnet.codec   
com.alibaba.dubbo.remoting.transport.codec   
com.alibaba.dubbo.remoting.transport.netty   
com.alibaba.dubbo.remoting.transport.netty4   
com.alibaba.dubbo.rpc.protocol.dubbo   
com.alibaba.dubbo.rpc.protocol.thrift   
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting
 

Methods in com.alibaba.dubbo.remoting with parameters of type ChannelBuffer
 Object Codec2.decode(Channel channel, ChannelBuffer buffer)
           
 void Codec2.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.buffer
 

Classes in com.alibaba.dubbo.remoting.buffer that implement ChannelBuffer
 class AbstractChannelBuffer
           
 class ByteBufferBackedChannelBuffer
           
 class DynamicChannelBuffer
           
 class HeapChannelBuffer
           
 

Fields in com.alibaba.dubbo.remoting.buffer declared as ChannelBuffer
static ChannelBuffer ChannelBuffers.EMPTY_BUFFER
           
 

Methods in com.alibaba.dubbo.remoting.buffer that return ChannelBuffer
 ChannelBuffer ChannelBufferOutputStream.buffer()
           
static ChannelBuffer ChannelBuffers.buffer(int capacity)
           
 ChannelBuffer ChannelBuffer.copy()
          Returns a copy of this buffer's readable bytes.
 ChannelBuffer AbstractChannelBuffer.copy()
           
 ChannelBuffer ChannelBuffer.copy(int index, int length)
          Returns a copy of this buffer's sub-region.
 ChannelBuffer ByteBufferBackedChannelBuffer.copy(int index, int length)
           
 ChannelBuffer HeapChannelBuffer.copy(int index, int length)
           
 ChannelBuffer DynamicChannelBuffer.copy(int index, int length)
           
static ChannelBuffer ChannelBuffers.directBuffer(int capacity)
           
static ChannelBuffer ChannelBuffers.dynamicBuffer()
           
static ChannelBuffer ChannelBuffers.dynamicBuffer(int capacity)
           
static ChannelBuffer ChannelBuffers.dynamicBuffer(int capacity, ChannelBufferFactory factory)
           
 ChannelBuffer ChannelBufferFactory.getBuffer(byte[] array, int offset, int length)
           
 ChannelBuffer HeapChannelBufferFactory.getBuffer(byte[] array, int offset, int length)
           
 ChannelBuffer DirectChannelBufferFactory.getBuffer(byte[] array, int offset, int length)
           
 ChannelBuffer ChannelBufferFactory.getBuffer(ByteBuffer nioBuffer)
           
 ChannelBuffer HeapChannelBufferFactory.getBuffer(ByteBuffer nioBuffer)
           
 ChannelBuffer DirectChannelBufferFactory.getBuffer(ByteBuffer nioBuffer)
           
 ChannelBuffer ChannelBufferFactory.getBuffer(int capacity)
           
 ChannelBuffer HeapChannelBufferFactory.getBuffer(int capacity)
           
 ChannelBuffer DirectChannelBufferFactory.getBuffer(int capacity)
           
 ChannelBuffer ChannelBuffer.readBytes(int length)
          Transfers this buffer's data to a newly created buffer starting at the current readerIndex and increases the readerIndex by the number of the transferred bytes (= length).
 ChannelBuffer AbstractChannelBuffer.readBytes(int length)
           
static ChannelBuffer ChannelBuffers.wrappedBuffer(byte[] array)
           
static ChannelBuffer ChannelBuffers.wrappedBuffer(byte[] array, int offset, int length)
           
static ChannelBuffer ChannelBuffers.wrappedBuffer(ByteBuffer buffer)
           
 

Methods in com.alibaba.dubbo.remoting.buffer with parameters of type ChannelBuffer
static int ChannelBuffers.compare(ChannelBuffer bufferA, ChannelBuffer bufferB)
           
 int AbstractChannelBuffer.compareTo(ChannelBuffer that)
           
static boolean ChannelBuffers.equals(ChannelBuffer bufferA, ChannelBuffer bufferB)
           
 void ChannelBuffer.getBytes(int index, ChannelBuffer dst)
          Transfers this buffer's data to the specified destination starting at the specified absolute index until the destination becomes non-writable.
 void AbstractChannelBuffer.getBytes(int index, ChannelBuffer dst)
           
 void ChannelBuffer.getBytes(int index, ChannelBuffer dst, int length)
          Transfers this buffer's data to the specified destination starting at the specified absolute index.
 void AbstractChannelBuffer.getBytes(int index, ChannelBuffer dst, int length)
           
 void ChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
          Transfers this buffer's data to the specified destination starting at the specified absolute index.
 void ByteBufferBackedChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
           
 void HeapChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
           
 void DynamicChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
           
 void ChannelBuffer.readBytes(ChannelBuffer dst)
          Transfers this buffer's data to the specified destination starting at the current readerIndex until the destination becomes non-writable, and increases the readerIndex by the number of the transferred bytes.
 void AbstractChannelBuffer.readBytes(ChannelBuffer dst)
           
 void ChannelBuffer.readBytes(ChannelBuffer dst, int length)
          Transfers this buffer's data to the specified destination starting at the current readerIndex and increases the readerIndex by the number of the transferred bytes (= length).
 void AbstractChannelBuffer.readBytes(ChannelBuffer dst, int length)
           
 void ChannelBuffer.readBytes(ChannelBuffer dst, int dstIndex, int length)
          Transfers this buffer's data to the specified destination starting at the current readerIndex and increases the readerIndex by the number of the transferred bytes (= length).
 void AbstractChannelBuffer.readBytes(ChannelBuffer dst, int dstIndex, int length)
           
 void ChannelBuffer.setBytes(int index, ChannelBuffer src)
          Transfers the specified source buffer's data to this buffer starting at the specified absolute index until the source buffer becomes unreadable.
 void AbstractChannelBuffer.setBytes(int index, ChannelBuffer src)
           
 void ChannelBuffer.setBytes(int index, ChannelBuffer src, int length)
          Transfers the specified source buffer's data to this buffer starting at the specified absolute index.
 void AbstractChannelBuffer.setBytes(int index, ChannelBuffer src, int length)
           
 void ChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
          Transfers the specified source buffer's data to this buffer starting at the specified absolute index.
 void ByteBufferBackedChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
           
 void HeapChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
           
 void DynamicChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
           
 void ChannelBuffer.writeBytes(ChannelBuffer src)
          Transfers the specified source buffer's data to this buffer starting at the current writerIndex until the source buffer becomes unreadable, and increases the writerIndex by the number of the transferred bytes.
 void AbstractChannelBuffer.writeBytes(ChannelBuffer src)
           
 void ChannelBuffer.writeBytes(ChannelBuffer src, int length)
          Transfers the specified source buffer's data to this buffer starting at the current writerIndex and increases the writerIndex by the number of the transferred bytes (= length).
 void AbstractChannelBuffer.writeBytes(ChannelBuffer src, int length)
           
 void ChannelBuffer.writeBytes(ChannelBuffer src, int srcIndex, int length)
          Transfers the specified source buffer's data to this buffer starting at the current writerIndex and increases the writerIndex by the number of the transferred bytes (= length).
 void AbstractChannelBuffer.writeBytes(ChannelBuffer src, int srcIndex, int length)
           
 void DynamicChannelBuffer.writeBytes(ChannelBuffer src, int srcIndex, int length)
           
 

Constructors in com.alibaba.dubbo.remoting.buffer with parameters of type ChannelBuffer
ChannelBufferInputStream(ChannelBuffer buffer)
           
ChannelBufferInputStream(ChannelBuffer buffer, int length)
           
ChannelBufferOutputStream(ChannelBuffer buffer)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.exchange.codec
 

Methods in com.alibaba.dubbo.remoting.exchange.codec with parameters of type ChannelBuffer
 Object ExchangeCodec.decode(Channel channel, ChannelBuffer buffer)
           
 void ExchangeCodec.encode(Channel channel, ChannelBuffer buffer, Object msg)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.telnet.codec
 

Methods in com.alibaba.dubbo.remoting.telnet.codec with parameters of type ChannelBuffer
 Object TelnetCodec.decode(Channel channel, ChannelBuffer buffer)
           
 void TelnetCodec.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.transport.codec
 

Methods in com.alibaba.dubbo.remoting.transport.codec with parameters of type ChannelBuffer
 Object TransportCodec.decode(Channel channel, ChannelBuffer buffer)
           
 Object CodecAdapter.decode(Channel channel, ChannelBuffer buffer)
           
 void TransportCodec.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 void CodecAdapter.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.transport.netty
 

Methods in com.alibaba.dubbo.remoting.transport.netty that return ChannelBuffer
 ChannelBuffer NettyBackedChannelBuffer.copy()
           
 ChannelBuffer NettyBackedChannelBuffer.copy(int index, int length)
           
 ChannelBuffer NettyBackedChannelBufferFactory.getBuffer(byte[] array, int offset, int length)
           
 ChannelBuffer NettyBackedChannelBufferFactory.getBuffer(ByteBuffer nioBuffer)
           
 ChannelBuffer NettyBackedChannelBufferFactory.getBuffer(int capacity)
           
 ChannelBuffer NettyBackedChannelBuffer.readBytes(int length)
           
 

Methods in com.alibaba.dubbo.remoting.transport.netty with parameters of type ChannelBuffer
 int NettyBackedChannelBuffer.compareTo(ChannelBuffer o)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst, int length)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst, int length)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst, int dstIndex, int length)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src, int length)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src, int length)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src, int srcIndex, int length)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.remoting.transport.netty4
 

Classes in com.alibaba.dubbo.remoting.transport.netty4 that implement ChannelBuffer
 class NettyBackedChannelBuffer
           
 

Methods in com.alibaba.dubbo.remoting.transport.netty4 that return ChannelBuffer
 ChannelBuffer NettyBackedChannelBuffer.copy()
           
 ChannelBuffer NettyBackedChannelBuffer.copy(int index, int length)
           
 ChannelBuffer NettyBackedChannelBuffer.readBytes(int length)
           
 

Methods in com.alibaba.dubbo.remoting.transport.netty4 with parameters of type ChannelBuffer
 int NettyBackedChannelBuffer.compareTo(ChannelBuffer o)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst, int length)
           
 void NettyBackedChannelBuffer.getBytes(int index, ChannelBuffer dst, int dstIndex, int length)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst, int length)
           
 void NettyBackedChannelBuffer.readBytes(ChannelBuffer dst, int dstIndex, int length)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src, int length)
           
 void NettyBackedChannelBuffer.setBytes(int index, ChannelBuffer src, int srcIndex, int length)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src, int length)
           
 void NettyBackedChannelBuffer.writeBytes(ChannelBuffer src, int srcIndex, int length)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.rpc.protocol.dubbo
 

Methods in com.alibaba.dubbo.rpc.protocol.dubbo with parameters of type ChannelBuffer
 Object DubboCountCodec.decode(Channel channel, ChannelBuffer buffer)
           
 void DubboCountCodec.encode(Channel channel, ChannelBuffer buffer, Object msg)
           
 

Uses of ChannelBuffer in com.alibaba.dubbo.rpc.protocol.thrift
 

Methods in com.alibaba.dubbo.rpc.protocol.thrift with parameters of type ChannelBuffer
 Object ThriftCodec.decode(Channel channel, ChannelBuffer buffer)
           
 Object ThriftNativeCodec.decode(Channel channel, ChannelBuffer buffer)
           
 void ThriftCodec.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 void ThriftNativeCodec.encode(Channel channel, ChannelBuffer buffer, Object message)
           
 



Copyright © 2012–2017 Alibaba. All rights reserved.