Uses of Class
io.netty.buffer.ByteBuf
-
Packages that use ByteBuf Package Description io.netty.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message.io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.channel.epoll Optimized transport for linux which uses EPOLL Edge-Triggered Mode for maximal performance.io.netty.channel.nio NIO-based channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.oio Old blocking I/O based channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.sctp Abstract SCTP socket interfaces which extend the core channel API.io.netty.channel.socket Abstract TCP and UDP socket interfaces which extend the core channel API.io.netty.channel.socket.nio NIO-based socket channel API implementation - recommended for a large number of connections (>= 1000).io.netty.channel.socket.oio Old blocking I/O based socket channel API implementation - recommended for a small number of connections (< 1000).io.netty.channel.udt UDT Transport.io.netty.channel.udt.nio UDT Transport for NIO Channels.io.netty.channel.unix Unix specific transport.io.netty.channel.uring io_uring is a high I/O performance scalable interface for fully asynchronous Linux syscalls.io.netty.handler.codec Extensible decoder and its common implementations which deal with the packet fragmentation and reassembly issue found in a stream-based transport such as TCP/IP.io.netty.handler.codec.base64 io.netty.handler.codec.bytes Encoder and decoder which transform an array of bytes into aByteBufand vice versa.io.netty.handler.codec.compression io.netty.handler.codec.dns DNS codec.io.netty.handler.codec.haproxy Decodes an HAProxy proxy protocol headerio.netty.handler.codec.http Encoder, decoder and their related message types for HTTP.io.netty.handler.codec.http.multipart HTTP multipart support.io.netty.handler.codec.http.websocketx Encoder, decoder, handshakers and their related message types for Web Socket data frames.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames.io.netty.handler.codec.http3 HTTP/3 implementation.io.netty.handler.codec.json JSON specific codecs.io.netty.handler.codec.marshalling Decoder and Encoder which uses JBoss Marshalling.io.netty.handler.codec.memcache Common superset of ascii and binary classes.io.netty.handler.codec.memcache.binary Implementations and Interfaces for the Memcache Binary protocol.io.netty.handler.codec.mqtt Encoder, decoder and different Message Types for MQTT.io.netty.handler.codec.protobuf Encoder and decoder which transform a Google Protocol BuffersMessageandMessageNanointo aByteBufand vice versa.io.netty.handler.codec.quic QUIC implementationio.netty.handler.codec.redis Encoder, decoder for Redis.io.netty.handler.codec.rtsp An RTSP extension based on the HTTP codec.io.netty.handler.codec.sctp Decoder and encoders to manage message completion and multi-streaming codec in SCTP/IP.io.netty.handler.codec.serialization Encoder, decoder and their compatibility stream implementations which transform aSerializableobject into a byte buffer and vice versa.io.netty.handler.codec.smtp SMTP codec.io.netty.handler.codec.socks Encoder, decoder and their related message types for Socks.io.netty.handler.codec.socksx Encoder, decoder and their related message types for SOCKS protocol.io.netty.handler.codec.socksx.v4 Encoder, decoder and their related message types for SOCKSv4 protocol.io.netty.handler.codec.socksx.v5 Encoder, decoder and their related message types for SOCKSv5 protocol.io.netty.handler.codec.spdy Encoder, decoder, session handler and their related message types for the SPDY protocol.io.netty.handler.codec.stomp STOMP codecio.netty.handler.codec.string Encoder and decoder which transform aStringinto aByteBufand vice versa.io.netty.handler.codec.xml XML codec provides asynchronous and non-blocking XML parser based on the Aalto XML parser.io.netty.handler.ssl SSL · TLS implementation based onSSLEngineio.netty.handler.stream Writes very large data stream asynchronously neither spending a lot of memory nor gettingOutOfMemoryError. -
-
Uses of ByteBuf in io.netty.buffer
Subclasses of ByteBuf in io.netty.buffer Modifier and Type Class Description classAbstractByteBufA skeletal implementation of a buffer.classAbstractDerivedByteBufDeprecated.Do not use.classAbstractReferenceCountedByteBufAbstract base class forByteBufimplementations that count references.classCompositeByteBufA virtual buffer which shows multiple buffers as a single merged buffer.classDuplicatedByteBufDeprecated.Do not use.classEmptyByteBufAn emptyByteBufwhose capacity and maximum capacity are all0.classReadOnlyByteBufDeprecated.Do not use.classSlicedByteBufDeprecated.Do not use.classSwappedByteBufDeprecated.use the Little Endian accessors, e.g.classUnpooledDirectByteBufA NIOByteBufferbased buffer.classUnpooledHeapByteBufBig endian Java heap buffer implementation.classUnpooledUnsafeDirectByteBufA NIOByteBufferbased buffer.classUnpooledUnsafeHeapByteBufBig endian Java heap buffer implementation.classWrappedByteBufWraps anotherByteBuf.Fields in io.netty.buffer declared as ByteBuf Modifier and Type Field Description protected ByteBufWrappedByteBuf. bufstatic ByteBufUnpooled. EMPTY_BUFFERA buffer whose capacity is0.Methods in io.netty.buffer that return ByteBuf Modifier and Type Method Description ByteBufByteBuf. asByteBuf()AByteBufcan turn into itself.ByteBufByteBufConvertible. asByteBuf()Turn this object into aByteBuf.ByteBufAbstractByteBuf. asReadOnly()abstract ByteBufByteBuf. asReadOnly()Returns a read-only version of this buffer.ByteBufEmptyByteBuf. asReadOnly()ByteBufReadOnlyByteBuf. asReadOnly()Deprecated.ByteBufSwappedByteBuf. asReadOnly()Deprecated.ByteBufWrappedByteBuf. asReadOnly()ByteBufAbstractByteBufAllocator. buffer()ByteBufAbstractByteBufAllocator. buffer(int initialCapacity)ByteBufAbstractByteBufAllocator. buffer(int initialCapacity, int maxCapacity)ByteBufByteBufAllocator. buffer()Allocate aByteBuf.ByteBufByteBufAllocator. buffer(int initialCapacity)Allocate aByteBufwith the given initial capacity.ByteBufByteBufAllocator. buffer(int initialCapacity, int maxCapacity)Allocate aByteBufwith the given initial capacity and the given maximal capacity.ByteBufByteBufOutputStream. buffer()Returns the buffer where this stream is writing data.static ByteBufUnpooled. buffer()Creates a new big-endian Java heap buffer with reasonably small initial capacity, which expands its capacity boundlessly on demand.static ByteBufUnpooled. buffer(int initialCapacity)Creates a new big-endian Java heap buffer with the specifiedcapacity, which expands its capacity boundlessly on demand.static ByteBufUnpooled. buffer(int initialCapacity, int maxCapacity)Creates a new big-endian Java heap buffer with the specifiedinitialCapacity, that may grow up tomaxCapacityThe new buffer'sreaderIndexandwriterIndexare0.abstract ByteBufByteBuf. capacity(int newCapacity)Adjusts the capacity of this buffer.ByteBufDuplicatedByteBuf. capacity(int newCapacity)Deprecated.ByteBufEmptyByteBuf. capacity(int newCapacity)ByteBufReadOnlyByteBuf. capacity(int newCapacity)Deprecated.ByteBufSwappedByteBuf. capacity(int newCapacity)Deprecated.ByteBufUnpooledDirectByteBuf. capacity(int newCapacity)ByteBufUnpooledHeapByteBuf. capacity(int newCapacity)ByteBufWrappedByteBuf. capacity(int newCapacity)ByteBufAbstractByteBuf. clear()abstract ByteBufByteBuf. clear()Sets thereaderIndexandwriterIndexof this buffer to0.ByteBufEmptyByteBuf. clear()ByteBufSwappedByteBuf. clear()Deprecated.ByteBufWrappedByteBuf. clear()ByteBufCompositeByteBuf. component(int cIndex)Return a duplicate of theByteBufon the specified component index.ByteBufCompositeByteBuf. componentAtOffset(int offset)Return theByteBufon the specified indexByteBufCompositeByteBuf. componentSlice(int cIndex)Return a slice of theByteBufon the specified component index.ByteBufByteBufHolder. content()Return the data which is held by thisByteBufHolder.ByteBufDefaultByteBufHolder. content()static ByteBufUnpooled. copiedBuffer(byte[] array)Creates a new big-endian buffer whose content is a copy of the specifiedarray.static ByteBufUnpooled. copiedBuffer(byte[]... arrays)Creates a new big-endian buffer whose content is a merged copy of the specifiedarrays.static ByteBufUnpooled. copiedBuffer(byte[] array, int offset, int length)Creates a new big-endian buffer whose content is a copy of the specifiedarray's sub-region.static ByteBufUnpooled. copiedBuffer(char[] array, int offset, int length, java.nio.charset.Charset charset)Creates a new big-endian buffer whose content is a subregion of the specifiedarrayencoded in the specifiedcharset.static ByteBufUnpooled. copiedBuffer(char[] array, java.nio.charset.Charset charset)Creates a new big-endian buffer whose content is the specifiedarrayencoded in the specifiedcharset.static ByteBufUnpooled. copiedBuffer(ByteBuf buffer)Creates a new buffer whose content is a copy of the specifiedbuffer's readable bytes.static ByteBufUnpooled. copiedBuffer(ByteBuf... buffers)Creates a new buffer whose content is a merged copy of the specifiedbuffers' readable bytes.static ByteBufUnpooled. copiedBuffer(java.lang.CharSequence string, int offset, int length, java.nio.charset.Charset charset)Creates a new big-endian buffer whose content is a subregion of the specifiedstringencoded in the specifiedcharset.static ByteBufUnpooled. copiedBuffer(java.lang.CharSequence string, java.nio.charset.Charset charset)Creates a new big-endian buffer whose content is the specifiedstringencoded in the specifiedcharset.static ByteBufUnpooled. copiedBuffer(java.nio.ByteBuffer buffer)Creates a new buffer whose content is a copy of the specifiedbuffer's current slice.static ByteBufUnpooled. copiedBuffer(java.nio.ByteBuffer... buffers)Creates a new buffer whose content is a merged copy of the specifiedbuffers' slices.ByteBufAbstractByteBuf. copy()abstract ByteBufByteBuf. copy()Returns a copy of this buffer's readable bytes.abstract ByteBufByteBuf. copy(int index, int length)Returns a copy of this buffer's sub-region.ByteBufCompositeByteBuf. copy(int index, int length)ByteBufDuplicatedByteBuf. copy(int index, int length)Deprecated.ByteBufEmptyByteBuf. copy()ByteBufEmptyByteBuf. copy(int index, int length)ByteBufReadOnlyByteBuf. copy(int index, int length)Deprecated.ByteBufSwappedByteBuf. copy()Deprecated.ByteBufSwappedByteBuf. copy(int index, int length)Deprecated.ByteBufUnpooledDirectByteBuf. copy(int index, int length)ByteBufUnpooledHeapByteBuf. copy(int index, int length)ByteBufUnpooledUnsafeDirectByteBuf. copy(int index, int length)ByteBufWrappedByteBuf. copy()ByteBufWrappedByteBuf. copy(int index, int length)static ByteBufUnpooled. copyBoolean(boolean value)Creates a new single-byte big-endian buffer that holds the specified boolean value.static ByteBufUnpooled. copyBoolean(boolean... values)Create a new big-endian buffer that holds a sequence of the specified boolean values.static ByteBufUnpooled. copyDouble(double value)Creates a new 8-byte big-endian buffer that holds the specified 64-bit floating point number.static ByteBufUnpooled. copyDouble(double... values)Create a new big-endian buffer that holds a sequence of the specified 64-bit floating point numbers.static ByteBufUnpooled. copyFloat(float value)Creates a new 4-byte big-endian buffer that holds the specified 32-bit floating point number.static ByteBufUnpooled. copyFloat(float... values)Create a new big-endian buffer that holds a sequence of the specified 32-bit floating point numbers.static ByteBufUnpooled. copyInt(int value)Creates a new 4-byte big-endian buffer that holds the specified 32-bit integer.static ByteBufUnpooled. copyInt(int... values)Create a big-endian buffer that holds a sequence of the specified 32-bit integers.static ByteBufUnpooled. copyLong(long value)Creates a new 8-byte big-endian buffer that holds the specified 64-bit integer.static ByteBufUnpooled. copyLong(long... values)Create a new big-endian buffer that holds a sequence of the specified 64-bit integers.static ByteBufUnpooled. copyMedium(int value)Creates a new 3-byte big-endian buffer that holds the specified 24-bit integer.static ByteBufUnpooled. copyMedium(int... values)Create a new big-endian buffer that holds a sequence of the specified 24-bit integers.static ByteBufUnpooled. copyShort(int value)Creates a new 2-byte big-endian buffer that holds the specified 16-bit integer.static ByteBufUnpooled. copyShort(int... values)Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.static ByteBufUnpooled. copyShort(short... values)Create a new big-endian buffer that holds a sequence of the specified 16-bit integers.ByteBufAbstractByteBufAllocator. directBuffer()ByteBufAbstractByteBufAllocator. directBuffer(int initialCapacity)ByteBufAbstractByteBufAllocator. directBuffer(int initialCapacity, int maxCapacity)ByteBufByteBufAllocator. directBuffer()Allocate a directByteBuf.ByteBufByteBufAllocator. directBuffer(int initialCapacity)Allocate a directByteBufwith the given initial capacity.ByteBufByteBufAllocator. directBuffer(int initialCapacity, int maxCapacity)Allocate a directByteBufwith the given initial capacity and the given maximal capacity.static ByteBufUnpooled. directBuffer()Creates a new big-endian direct buffer with reasonably small initial capacity, which expands its capacity boundlessly on demand.static ByteBufUnpooled. directBuffer(int initialCapacity)Creates a new big-endian direct buffer with the specifiedcapacity, which expands its capacity boundlessly on demand.static ByteBufUnpooled. directBuffer(int initialCapacity, int maxCapacity)Creates a new big-endian direct buffer with the specifiedinitialCapacity, that may grow up tomaxCapacity.ByteBufAbstractByteBuf. discardReadBytes()abstract ByteBufByteBuf. discardReadBytes()Discards the bytes between the 0th index andreaderIndex.ByteBufEmptyByteBuf. discardReadBytes()ByteBufReadOnlyByteBuf. discardReadBytes()Deprecated.ByteBufSwappedByteBuf. discardReadBytes()Deprecated.ByteBufWrappedByteBuf. discardReadBytes()ByteBufAbstractByteBuf. discardSomeReadBytes()abstract ByteBufByteBuf. discardSomeReadBytes()Similar todiscardReadBytes()except that this method might discard some, all, or none of read bytes depending on its internal implementation to reduce overall memory bandwidth consumption at the cost of potentially additional memory consumption.ByteBufEmptyByteBuf. discardSomeReadBytes()ByteBufSwappedByteBuf. discardSomeReadBytes()Deprecated.ByteBufWrappedByteBuf. discardSomeReadBytes()ByteBufAbstractByteBuf. duplicate()abstract ByteBufByteBuf. duplicate()Returns a buffer which shares the whole region of this buffer.ByteBufEmptyByteBuf. duplicate()ByteBufReadOnlyByteBuf. duplicate()Deprecated.ByteBufSwappedByteBuf. duplicate()Deprecated.ByteBufWrappedByteBuf. duplicate()static ByteBufByteBufUtil. encodeString(ByteBufAllocator alloc, java.nio.CharBuffer src, java.nio.charset.Charset charset)Encode the givenCharBufferusing the givenCharsetinto a newByteBufwhich is allocated via theByteBufAllocator.static ByteBufByteBufUtil. encodeString(ByteBufAllocator alloc, java.nio.CharBuffer src, java.nio.charset.Charset charset, int extraCapacity)Encode the givenCharBufferusing the givenCharsetinto a newByteBufwhich is allocated via theByteBufAllocator.static ByteBufByteBufUtil. ensureAccessible(ByteBuf buffer)ByteBufAbstractByteBuf. ensureWritable(int minWritableBytes)abstract ByteBufByteBuf. ensureWritable(int minWritableBytes)Expands the buffercapacity()to make sure the number of writable bytes is equal to or greater than the specified value.ByteBufEmptyByteBuf. ensureWritable(int minWritableBytes)ByteBufReadOnlyByteBuf. ensureWritable(int minWritableBytes)Deprecated.ByteBufSwappedByteBuf. ensureWritable(int writableBytes)Deprecated.ByteBufWrappedByteBuf. ensureWritable(int minWritableBytes)ByteBufAbstractByteBuf. getBytes(int index, byte[] dst)ByteBufAbstractByteBuf. getBytes(int index, ByteBuf dst)ByteBufAbstractByteBuf. getBytes(int index, ByteBuf dst, int length)abstract ByteBufByteBuf. getBytes(int index, byte[] dst)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst)Transfers this buffer's data to the specified destination starting at the specified absoluteindexuntil the destination becomes non-writable.abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst, int length)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, java.io.OutputStream out, int length)Transfers this buffer's data to the specified stream starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, java.nio.ByteBuffer dst)Transfers this buffer's data to the specified destination starting at the specified absoluteindexuntil the destination's position reaches its limit.ByteBufDuplicatedByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)Deprecated.ByteBufDuplicatedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufDuplicatedByteBuf. getBytes(int index, java.io.OutputStream out, int length)Deprecated.ByteBufDuplicatedByteBuf. getBytes(int index, java.nio.ByteBuffer dst)Deprecated.ByteBufEmptyByteBuf. getBytes(int index, byte[] dst)ByteBufEmptyByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst)ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst, int length)ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufEmptyByteBuf. getBytes(int index, java.io.OutputStream out, int length)ByteBufEmptyByteBuf. getBytes(int index, java.nio.ByteBuffer dst)ByteBufReadOnlyByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)Deprecated.ByteBufReadOnlyByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufReadOnlyByteBuf. getBytes(int index, java.io.OutputStream out, int length)Deprecated.ByteBufReadOnlyByteBuf. getBytes(int index, java.nio.ByteBuffer dst)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, byte[] dst)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, java.io.OutputStream out, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, java.nio.ByteBuffer dst)Deprecated.ByteBufUnpooledDirectByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)ByteBufUnpooledDirectByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufUnpooledDirectByteBuf. getBytes(int index, java.io.OutputStream out, int length)ByteBufUnpooledDirectByteBuf. getBytes(int index, java.nio.ByteBuffer dst)ByteBufUnpooledHeapByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)ByteBufUnpooledHeapByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufUnpooledHeapByteBuf. getBytes(int index, java.io.OutputStream out, int length)ByteBufUnpooledHeapByteBuf. getBytes(int index, java.nio.ByteBuffer dst)ByteBufUnpooledUnsafeDirectByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufWrappedByteBuf. getBytes(int index, byte[] dst)ByteBufWrappedByteBuf. getBytes(int index, byte[] dst, int dstIndex, int length)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst, int length)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufWrappedByteBuf. getBytes(int index, java.io.OutputStream out, int length)ByteBufWrappedByteBuf. getBytes(int index, java.nio.ByteBuffer dst)ByteBufAbstractByteBufAllocator. heapBuffer()ByteBufAbstractByteBufAllocator. heapBuffer(int initialCapacity)ByteBufAbstractByteBufAllocator. heapBuffer(int initialCapacity, int maxCapacity)ByteBufByteBufAllocator. heapBuffer()Allocate a heapByteBuf.ByteBufByteBufAllocator. heapBuffer(int initialCapacity)Allocate a heapByteBufwith the given initial capacity.ByteBufByteBufAllocator. heapBuffer(int initialCapacity, int maxCapacity)Allocate a heapByteBufwith the given initial capacity and the given maximal capacity.ByteBufCompositeByteBuf. internalComponent(int cIndex)Return the internalByteBufon the specified index.ByteBufCompositeByteBuf. internalComponentAtOffset(int offset)Return the internalByteBufon the specified offset.ByteBufAbstractByteBufAllocator. ioBuffer()ByteBufAbstractByteBufAllocator. ioBuffer(int initialCapacity)ByteBufAbstractByteBufAllocator. ioBuffer(int initialCapacity, int maxCapacity)ByteBufByteBufAllocator. ioBuffer()Allocate aByteBuf, preferably a direct buffer which is suitable for I/O.ByteBufByteBufAllocator. ioBuffer(int initialCapacity)Allocate aByteBuf, preferably a direct buffer which is suitable for I/O.ByteBufByteBufAllocator. ioBuffer(int initialCapacity, int maxCapacity)Allocate aByteBuf, preferably a direct buffer which is suitable for I/O.ByteBufAbstractByteBuf. markReaderIndex()abstract ByteBufByteBuf. markReaderIndex()Marks the currentreaderIndexin this buffer.ByteBufEmptyByteBuf. markReaderIndex()ByteBufSwappedByteBuf. markReaderIndex()Deprecated.ByteBufWrappedByteBuf. markReaderIndex()ByteBufAbstractByteBuf. markWriterIndex()abstract ByteBufByteBuf. markWriterIndex()Marks the currentwriterIndexin this buffer.ByteBufEmptyByteBuf. markWriterIndex()ByteBufSwappedByteBuf. markWriterIndex()Deprecated.ByteBufWrappedByteBuf. markWriterIndex()protected abstract ByteBufAbstractByteBufAllocator. newDirectBuffer(int initialCapacity, int maxCapacity)Create a directByteBufwith the given initialCapacity and maxCapacity.protected ByteBufAdaptiveByteBufAllocator. newDirectBuffer(int initialCapacity, int maxCapacity)protected ByteBufPooledByteBufAllocator. newDirectBuffer(int initialCapacity, int maxCapacity)protected ByteBufUnpooledByteBufAllocator. newDirectBuffer(int initialCapacity, int maxCapacity)protected abstract ByteBufAbstractByteBufAllocator. newHeapBuffer(int initialCapacity, int maxCapacity)Create a heapByteBufwith the given initialCapacity and maxCapacity.protected ByteBufAdaptiveByteBufAllocator. newHeapBuffer(int initialCapacity, int maxCapacity)protected ByteBufPooledByteBufAllocator. newHeapBuffer(int initialCapacity, int maxCapacity)protected ByteBufUnpooledByteBufAllocator. newHeapBuffer(int initialCapacity, int maxCapacity)ByteBufAbstractByteBuf. order(java.nio.ByteOrder endianness)abstract ByteBufByteBuf. order(java.nio.ByteOrder endianness)Deprecated.use the Little Endian accessors, e.g.ByteBufEmptyByteBuf. order(java.nio.ByteOrder endianness)ByteBufSwappedByteBuf. order(java.nio.ByteOrder endianness)Deprecated.ByteBufWrappedByteBuf. order(java.nio.ByteOrder endianness)ByteBufAbstractByteBuf. readBytes(byte[] dst)ByteBufAbstractByteBuf. readBytes(byte[] dst, int dstIndex, int length)ByteBufAbstractByteBuf. readBytes(int length)ByteBufAbstractByteBuf. readBytes(ByteBuf dst)ByteBufAbstractByteBuf. readBytes(ByteBuf dst, int length)ByteBufAbstractByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)ByteBufAbstractByteBuf. readBytes(java.io.OutputStream out, int length)ByteBufAbstractByteBuf. readBytes(java.nio.ByteBuffer dst)abstract ByteBufByteBuf. readBytes(byte[] dst)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=dst.length).abstract ByteBufByteBuf. readBytes(byte[] dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. readBytes(int length)Transfers this buffer's data to a newly created buffer starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. readBytes(ByteBuf dst)Transfers this buffer's data to the specified destination starting at the currentreaderIndexuntil the destination becomes non-writable, and increases thereaderIndexby the number of the transferred bytes.abstract ByteBufByteBuf. readBytes(ByteBuf dst, int length)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. readBytes(java.io.OutputStream out, int length)Transfers this buffer's data to the specified stream starting at the currentreaderIndex.abstract ByteBufByteBuf. readBytes(java.nio.ByteBuffer dst)Transfers this buffer's data to the specified destination starting at the currentreaderIndexuntil the destination's position reaches its limit, and increases thereaderIndexby the number of the transferred bytes.static ByteBufByteBufUtil. readBytes(ByteBufAllocator alloc, ByteBuf buffer, int length)Read the given amount of bytes into a newByteBufthat is allocated from theByteBufAllocator.ByteBufEmptyByteBuf. readBytes(byte[] dst)ByteBufEmptyByteBuf. readBytes(byte[] dst, int dstIndex, int length)ByteBufEmptyByteBuf. readBytes(int length)ByteBufEmptyByteBuf. readBytes(ByteBuf dst)ByteBufEmptyByteBuf. readBytes(ByteBuf dst, int length)ByteBufEmptyByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)ByteBufEmptyByteBuf. readBytes(java.io.OutputStream out, int length)ByteBufEmptyByteBuf. readBytes(java.nio.ByteBuffer dst)ByteBufSwappedByteBuf. readBytes(byte[] dst)Deprecated.ByteBufSwappedByteBuf. readBytes(byte[] dst, int dstIndex, int length)Deprecated.ByteBufSwappedByteBuf. readBytes(int length)Deprecated.ByteBufSwappedByteBuf. readBytes(ByteBuf dst)Deprecated.ByteBufSwappedByteBuf. readBytes(ByteBuf dst, int length)Deprecated.ByteBufSwappedByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufSwappedByteBuf. readBytes(java.io.OutputStream out, int length)Deprecated.ByteBufSwappedByteBuf. readBytes(java.nio.ByteBuffer dst)Deprecated.ByteBufUnpooledDirectByteBuf. readBytes(byte[] dst, int dstIndex, int length)ByteBufUnpooledDirectByteBuf. readBytes(java.io.OutputStream out, int length)ByteBufUnpooledDirectByteBuf. readBytes(java.nio.ByteBuffer dst)ByteBufWrappedByteBuf. readBytes(byte[] dst)ByteBufWrappedByteBuf. readBytes(byte[] dst, int dstIndex, int length)ByteBufWrappedByteBuf. readBytes(int length)ByteBufWrappedByteBuf. readBytes(ByteBuf dst)ByteBufWrappedByteBuf. readBytes(ByteBuf dst, int length)ByteBufWrappedByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)ByteBufWrappedByteBuf. readBytes(java.io.OutputStream out, int length)ByteBufWrappedByteBuf. readBytes(java.nio.ByteBuffer dst)ByteBufAbstractByteBuf. readerIndex(int readerIndex)abstract ByteBufByteBuf. readerIndex(int readerIndex)Sets thereaderIndexof this buffer.ByteBufEmptyByteBuf. readerIndex(int readerIndex)ByteBufSwappedByteBuf. readerIndex(int readerIndex)Deprecated.ByteBufWrappedByteBuf. readerIndex(int readerIndex)ByteBufAbstractByteBuf. readRetainedSlice(int length)abstract ByteBufByteBuf. readRetainedSlice(int length)Returns a new retained slice of this buffer's sub-region starting at the currentreaderIndexand increases thereaderIndexby the size of the new slice (=length).ByteBufEmptyByteBuf. readRetainedSlice(int length)ByteBufSwappedByteBuf. readRetainedSlice(int length)Deprecated.ByteBufWrappedByteBuf. readRetainedSlice(int length)ByteBufAbstractByteBuf. readSlice(int length)abstract ByteBufByteBuf. readSlice(int length)Returns a new slice of this buffer's sub-region starting at the currentreaderIndexand increases thereaderIndexby the size of the new slice (=length).ByteBufEmptyByteBuf. readSlice(int length)ByteBufSwappedByteBuf. readSlice(int length)Deprecated.ByteBufWrappedByteBuf. readSlice(int length)ByteBufAbstractByteBuf. resetReaderIndex()abstract ByteBufByteBuf. resetReaderIndex()Repositions the currentreaderIndexto the markedreaderIndexin this buffer.ByteBufEmptyByteBuf. resetReaderIndex()ByteBufSwappedByteBuf. resetReaderIndex()Deprecated.ByteBufWrappedByteBuf. resetReaderIndex()ByteBufAbstractByteBuf. resetWriterIndex()abstract ByteBufByteBuf. resetWriterIndex()Repositions the currentwriterIndexto the markedwriterIndexin this buffer.ByteBufEmptyByteBuf. resetWriterIndex()ByteBufSwappedByteBuf. resetWriterIndex()Deprecated.ByteBufWrappedByteBuf. resetWriterIndex()ByteBufAbstractDerivedByteBuf. retain()Deprecated.ByteBufAbstractDerivedByteBuf. retain(int increment)Deprecated.ByteBufAbstractReferenceCountedByteBuf. retain()ByteBufAbstractReferenceCountedByteBuf. retain(int increment)abstract ByteBufByteBuf. retain()abstract ByteBufByteBuf. retain(int increment)ByteBufEmptyByteBuf. retain()ByteBufEmptyByteBuf. retain(int increment)ByteBufSwappedByteBuf. retain()Deprecated.ByteBufSwappedByteBuf. retain(int increment)Deprecated.ByteBufWrappedByteBuf. retain()ByteBufWrappedByteBuf. retain(int increment)ByteBufAbstractByteBuf. retainedDuplicate()abstract ByteBufByteBuf. retainedDuplicate()Returns a retained buffer which shares the whole region of this buffer.ByteBufEmptyByteBuf. retainedDuplicate()ByteBufSwappedByteBuf. retainedDuplicate()Deprecated.ByteBufWrappedByteBuf. retainedDuplicate()ByteBufAbstractByteBuf. retainedSlice()ByteBufAbstractByteBuf. retainedSlice(int index, int length)abstract ByteBufByteBuf. retainedSlice()Returns a retained slice of this buffer's readable bytes.abstract ByteBufByteBuf. retainedSlice(int index, int length)Returns a retained slice of this buffer's sub-region.ByteBufEmptyByteBuf. retainedSlice()ByteBufEmptyByteBuf. retainedSlice(int index, int length)ByteBufSwappedByteBuf. retainedSlice()Deprecated.ByteBufSwappedByteBuf. retainedSlice(int index, int length)Deprecated.ByteBufWrappedByteBuf. retainedSlice()ByteBufWrappedByteBuf. retainedSlice(int index, int length)ByteBufAbstractByteBuf. setBoolean(int index, boolean value)abstract ByteBufByteBuf. setBoolean(int index, boolean value)Sets the specified boolean at the specified absoluteindexin this buffer.ByteBufEmptyByteBuf. setBoolean(int index, boolean value)ByteBufSwappedByteBuf. setBoolean(int index, boolean value)Deprecated.ByteBufWrappedByteBuf. setBoolean(int index, boolean value)ByteBufAbstractByteBuf. setByte(int index, int value)abstract ByteBufByteBuf. setByte(int index, int value)Sets the specified byte at the specified absoluteindexin this buffer.ByteBufDuplicatedByteBuf. setByte(int index, int value)Deprecated.ByteBufEmptyByteBuf. setByte(int index, int value)ByteBufReadOnlyByteBuf. setByte(int index, int value)Deprecated.ByteBufSwappedByteBuf. setByte(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setByte(int index, int value)ByteBufUnpooledHeapByteBuf. setByte(int index, int value)ByteBufUnpooledUnsafeDirectByteBuf. setByte(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setByte(int index, int value)ByteBufWrappedByteBuf. setByte(int index, int value)ByteBufAbstractByteBuf. setBytes(int index, byte[] src)ByteBufAbstractByteBuf. setBytes(int index, ByteBuf src)ByteBufAbstractByteBuf. setBytes(int index, ByteBuf src, int length)abstract ByteBufByteBuf. setBytes(int index, byte[] src)Transfers the specified source array's data to this buffer starting at the specified absoluteindex.abstract ByteBufByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)Transfers the specified source array's data to this buffer starting at the specified absoluteindex.abstract ByteBufByteBuf. setBytes(int index, ByteBuf src)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindexuntil the source buffer becomes unreadable.abstract ByteBufByteBuf. setBytes(int index, ByteBuf src, int length)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex.abstract ByteBufByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex.abstract ByteBufByteBuf. setBytes(int index, java.nio.ByteBuffer src)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindexuntil the source buffer's position reaches its limit.ByteBufDuplicatedByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)Deprecated.ByteBufDuplicatedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufDuplicatedByteBuf. setBytes(int index, java.nio.ByteBuffer src)Deprecated.ByteBufEmptyByteBuf. setBytes(int index, byte[] src)ByteBufEmptyByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src)ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src, int length)ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufEmptyByteBuf. setBytes(int index, java.nio.ByteBuffer src)ByteBufReadOnlyByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)Deprecated.ByteBufReadOnlyByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufReadOnlyByteBuf. setBytes(int index, java.nio.ByteBuffer src)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, byte[] src)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src, int length)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, java.nio.ByteBuffer src)Deprecated.ByteBufUnpooledDirectByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)ByteBufUnpooledDirectByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufUnpooledDirectByteBuf. setBytes(int index, java.nio.ByteBuffer src)ByteBufUnpooledHeapByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)ByteBufUnpooledHeapByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufUnpooledHeapByteBuf. setBytes(int index, java.nio.ByteBuffer src)ByteBufUnpooledUnsafeDirectByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)ByteBufUnpooledUnsafeDirectByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufUnpooledUnsafeDirectByteBuf. setBytes(int index, java.nio.ByteBuffer src)ByteBufWrappedByteBuf. setBytes(int index, byte[] src)ByteBufWrappedByteBuf. setBytes(int index, byte[] src, int srcIndex, int length)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src, int length)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufWrappedByteBuf. setBytes(int index, java.nio.ByteBuffer src)ByteBufAbstractByteBuf. setChar(int index, int value)abstract ByteBufByteBuf. setChar(int index, int value)Sets the specified 2-byte UTF-16 character at the specified absoluteindexin this buffer.ByteBufEmptyByteBuf. setChar(int index, int value)ByteBufSwappedByteBuf. setChar(int index, int value)Deprecated.ByteBufWrappedByteBuf. setChar(int index, int value)ByteBufAbstractByteBuf. setDouble(int index, double value)abstract ByteBufByteBuf. setDouble(int index, double value)Sets the specified 64-bit floating-point number at the specified absoluteindexin this buffer.ByteBufEmptyByteBuf. setDouble(int index, double value)ByteBufSwappedByteBuf. setDouble(int index, double value)Deprecated.ByteBufWrappedByteBuf. setDouble(int index, double value)ByteBufByteBuf. setDoubleLE(int index, double value)Sets the specified 64-bit floating-point number at the specified absoluteindexin this buffer in Little Endian Byte Order.ByteBufAbstractByteBuf. setFloat(int index, float value)abstract ByteBufByteBuf. setFloat(int index, float value)Sets the specified 32-bit floating-point number at the specified absoluteindexin this buffer.ByteBufEmptyByteBuf. setFloat(int index, float value)ByteBufSwappedByteBuf. setFloat(int index, float value)Deprecated.ByteBufWrappedByteBuf. setFloat(int index, float value)ByteBufByteBuf. setFloatLE(int index, float value)Sets the specified 32-bit floating-point number at the specified absoluteindexin this buffer in Little Endian Byte Order.ByteBufAbstractByteBuf. setIndex(int readerIndex, int writerIndex)abstract ByteBufByteBuf. setIndex(int readerIndex, int writerIndex)Sets thereaderIndexandwriterIndexof this buffer in one shot.ByteBufEmptyByteBuf. setIndex(int readerIndex, int writerIndex)ByteBufSwappedByteBuf. setIndex(int readerIndex, int writerIndex)Deprecated.ByteBufWrappedByteBuf. setIndex(int readerIndex, int writerIndex)ByteBufAbstractByteBuf. setInt(int index, int value)abstract ByteBufByteBuf. setInt(int index, int value)Sets the specified 32-bit integer at the specified absoluteindexin this buffer.ByteBufDuplicatedByteBuf. setInt(int index, int value)Deprecated.ByteBufEmptyByteBuf. setInt(int index, int value)ByteBufReadOnlyByteBuf. setInt(int index, int value)Deprecated.ByteBufSwappedByteBuf. setInt(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setInt(int index, int value)ByteBufUnpooledHeapByteBuf. setInt(int index, int value)ByteBufUnpooledUnsafeDirectByteBuf. setInt(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setInt(int index, int value)ByteBufWrappedByteBuf. setInt(int index, int value)ByteBufAbstractByteBuf. setIntLE(int index, int value)abstract ByteBufByteBuf. setIntLE(int index, int value)Sets the specified 32-bit integer at the specified absoluteindexin this buffer with Little Endian byte order .ByteBufDuplicatedByteBuf. setIntLE(int index, int value)Deprecated.ByteBufEmptyByteBuf. setIntLE(int index, int value)ByteBufReadOnlyByteBuf. setIntLE(int index, int value)Deprecated.ByteBufSwappedByteBuf. setIntLE(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setIntLE(int index, int value)ByteBufUnpooledHeapByteBuf. setIntLE(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setIntLE(int index, int value)ByteBufWrappedByteBuf. setIntLE(int index, int value)ByteBufAbstractByteBuf. setLong(int index, long value)abstract ByteBufByteBuf. setLong(int index, long value)Sets the specified 64-bit long integer at the specified absoluteindexin this buffer.ByteBufDuplicatedByteBuf. setLong(int index, long value)Deprecated.ByteBufEmptyByteBuf. setLong(int index, long value)ByteBufReadOnlyByteBuf. setLong(int index, long value)Deprecated.ByteBufSwappedByteBuf. setLong(int index, long value)Deprecated.ByteBufUnpooledDirectByteBuf. setLong(int index, long value)ByteBufUnpooledHeapByteBuf. setLong(int index, long value)ByteBufUnpooledUnsafeDirectByteBuf. setLong(int index, long value)ByteBufUnpooledUnsafeHeapByteBuf. setLong(int index, long value)ByteBufWrappedByteBuf. setLong(int index, long value)ByteBufAbstractByteBuf. setLongLE(int index, long value)abstract ByteBufByteBuf. setLongLE(int index, long value)Sets the specified 64-bit long integer at the specified absoluteindexin this buffer in Little Endian Byte Order.ByteBufDuplicatedByteBuf. setLongLE(int index, long value)Deprecated.ByteBufEmptyByteBuf. setLongLE(int index, long value)ByteBufReadOnlyByteBuf. setLongLE(int index, long value)Deprecated.ByteBufSwappedByteBuf. setLongLE(int index, long value)Deprecated.ByteBufUnpooledDirectByteBuf. setLongLE(int index, long value)ByteBufUnpooledHeapByteBuf. setLongLE(int index, long value)ByteBufUnpooledUnsafeHeapByteBuf. setLongLE(int index, long value)ByteBufWrappedByteBuf. setLongLE(int index, long value)ByteBufAbstractByteBuf. setMedium(int index, int value)abstract ByteBufByteBuf. setMedium(int index, int value)Sets the specified 24-bit medium integer at the specified absoluteindexin this buffer.ByteBufDuplicatedByteBuf. setMedium(int index, int value)Deprecated.ByteBufEmptyByteBuf. setMedium(int index, int value)ByteBufReadOnlyByteBuf. setMedium(int index, int value)Deprecated.ByteBufSwappedByteBuf. setMedium(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setMedium(int index, int value)ByteBufUnpooledHeapByteBuf. setMedium(int index, int value)ByteBufUnpooledUnsafeDirectByteBuf. setMedium(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setMedium(int index, int value)ByteBufWrappedByteBuf. setMedium(int index, int value)ByteBufAbstractByteBuf. setMediumLE(int index, int value)abstract ByteBufByteBuf. setMediumLE(int index, int value)Sets the specified 24-bit medium integer at the specified absoluteindexin this buffer in the Little Endian Byte Order.ByteBufDuplicatedByteBuf. setMediumLE(int index, int value)Deprecated.ByteBufEmptyByteBuf. setMediumLE(int index, int value)ByteBufReadOnlyByteBuf. setMediumLE(int index, int value)Deprecated.ByteBufSwappedByteBuf. setMediumLE(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setMediumLE(int index, int value)ByteBufUnpooledHeapByteBuf. setMediumLE(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setMediumLE(int index, int value)ByteBufWrappedByteBuf. setMediumLE(int index, int value)ByteBufAbstractByteBuf. setShort(int index, int value)abstract ByteBufByteBuf. setShort(int index, int value)Sets the specified 16-bit short integer at the specified absoluteindexin this buffer.ByteBufDuplicatedByteBuf. setShort(int index, int value)Deprecated.ByteBufEmptyByteBuf. setShort(int index, int value)ByteBufReadOnlyByteBuf. setShort(int index, int value)Deprecated.ByteBufSwappedByteBuf. setShort(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setShort(int index, int value)ByteBufUnpooledHeapByteBuf. setShort(int index, int value)ByteBufUnpooledUnsafeDirectByteBuf. setShort(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setShort(int index, int value)ByteBufWrappedByteBuf. setShort(int index, int value)static ByteBufByteBufUtil. setShortBE(ByteBuf buf, int index, int shortValue)Sets a big-endian 16-bit short integer to the buffer.ByteBufAbstractByteBuf. setShortLE(int index, int value)abstract ByteBufByteBuf. setShortLE(int index, int value)Sets the specified 16-bit short integer at the specified absoluteindexin this buffer with the Little Endian Byte Order.ByteBufDuplicatedByteBuf. setShortLE(int index, int value)Deprecated.ByteBufEmptyByteBuf. setShortLE(int index, int value)ByteBufReadOnlyByteBuf. setShortLE(int index, int value)Deprecated.ByteBufSwappedByteBuf. setShortLE(int index, int value)Deprecated.ByteBufUnpooledDirectByteBuf. setShortLE(int index, int value)ByteBufUnpooledHeapByteBuf. setShortLE(int index, int value)ByteBufUnpooledUnsafeHeapByteBuf. setShortLE(int index, int value)ByteBufWrappedByteBuf. setShortLE(int index, int value)ByteBufAbstractByteBuf. setZero(int index, int length)abstract ByteBufByteBuf. setZero(int index, int length)Fills this buffer with NUL (0x00) starting at the specified absoluteindex.ByteBufEmptyByteBuf. setZero(int index, int length)ByteBufSwappedByteBuf. setZero(int index, int length)Deprecated.ByteBufUnpooledUnsafeDirectByteBuf. setZero(int index, int length)ByteBufUnpooledUnsafeHeapByteBuf. setZero(int index, int length)ByteBufWrappedByteBuf. setZero(int index, int length)ByteBufAbstractByteBuf. skipBytes(int length)abstract ByteBufByteBuf. skipBytes(int length)Increases the currentreaderIndexby the specifiedlengthin this buffer.ByteBufEmptyByteBuf. skipBytes(int length)ByteBufSwappedByteBuf. skipBytes(int length)Deprecated.ByteBufWrappedByteBuf. skipBytes(int length)ByteBufAbstractByteBuf. slice()ByteBufAbstractByteBuf. slice(int index, int length)abstract ByteBufByteBuf. slice()Returns a slice of this buffer's readable bytes.abstract ByteBufByteBuf. slice(int index, int length)Returns a slice of this buffer's sub-region.ByteBufDuplicatedByteBuf. slice(int index, int length)Deprecated.ByteBufEmptyByteBuf. slice()ByteBufEmptyByteBuf. slice(int index, int length)ByteBufReadOnlyByteBuf. slice(int index, int length)Deprecated.ByteBufSwappedByteBuf. slice()Deprecated.ByteBufSwappedByteBuf. slice(int index, int length)Deprecated.ByteBufWrappedByteBuf. slice()ByteBufWrappedByteBuf. slice(int index, int length)static ByteBufByteBufUtil. threadLocalDirectBuffer()Returns a cached thread-local direct buffer, if available.protected static ByteBufAbstractByteBufAllocator. toLeakAwareBuffer(ByteBuf buf)ByteBufAbstractDerivedByteBuf. touch()Deprecated.ByteBufAbstractDerivedByteBuf. touch(java.lang.Object hint)Deprecated.ByteBufAbstractReferenceCountedByteBuf. touch()ByteBufAbstractReferenceCountedByteBuf. touch(java.lang.Object hint)abstract ByteBufByteBuf. touch()abstract ByteBufByteBuf. touch(java.lang.Object hint)ByteBufEmptyByteBuf. touch()ByteBufEmptyByteBuf. touch(java.lang.Object hint)ByteBufSwappedByteBuf. touch()Deprecated.ByteBufSwappedByteBuf. touch(java.lang.Object hint)Deprecated.ByteBufWrappedByteBuf. touch()ByteBufWrappedByteBuf. touch(java.lang.Object hint)static ByteBufUnpooled. unmodifiableBuffer(ByteBuf buffer)Deprecated.UseasReadOnly().static ByteBufUnpooled. unmodifiableBuffer(ByteBuf... buffers)Deprecated.static ByteBufUnpooled. unreleasableBuffer(ByteBuf buf)Return a unreleasable view on the givenByteBufwhich will just ignore release and retain calls.abstract ByteBufByteBuf. unwrap()Return the underlying buffer instance if this buffer is a wrapper of another buffer.ByteBufCompositeByteBuf. unwrap()ByteBufDuplicatedByteBuf. unwrap()Deprecated.ByteBufEmptyByteBuf. unwrap()ByteBufReadOnlyByteBuf. unwrap()Deprecated.ByteBufSwappedByteBuf. unwrap()Deprecated.ByteBufUnpooledDirectByteBuf. unwrap()ByteBufUnpooledHeapByteBuf. unwrap()ByteBufWrappedByteBuf. unwrap()static ByteBufUnpooled. wrappedBuffer(byte[] array)Creates a new big-endian buffer which wraps the specifiedarray.static ByteBufUnpooled. wrappedBuffer(byte[]... arrays)Creates a new big-endian composite buffer which wraps the specified arrays without copying them.static ByteBufUnpooled. wrappedBuffer(byte[] array, int offset, int length)Creates a new big-endian buffer which wraps the sub-region of the specifiedarray.static ByteBufUnpooled. wrappedBuffer(int maxNumComponents, byte[]... arrays)Creates a new big-endian composite buffer which wraps the specified arrays without copying them.static ByteBufUnpooled. wrappedBuffer(int maxNumComponents, ByteBuf... buffers)Creates a new big-endian composite buffer which wraps the readable bytes of the specified buffers without copying them.static ByteBufUnpooled. wrappedBuffer(int maxNumComponents, java.nio.ByteBuffer... buffers)Creates a new big-endian composite buffer which wraps the slices of the specified NIO buffers without copying them.static ByteBufUnpooled. wrappedBuffer(long memoryAddress, int size, boolean doFree)Creates a new buffer which wraps the specified memory address.static ByteBufUnpooled. wrappedBuffer(ByteBuf buffer)Creates a new buffer which wraps the specified buffer's readable bytes.static ByteBufUnpooled. wrappedBuffer(ByteBuf... buffers)Creates a new big-endian composite buffer which wraps the readable bytes of the specified buffers without copying them.static ByteBufUnpooled. wrappedBuffer(java.nio.ByteBuffer buffer)Creates a new buffer which wraps the specified NIO buffer's current slice.static ByteBufUnpooled. wrappedBuffer(java.nio.ByteBuffer... buffers)Creates a new big-endian composite buffer which wraps the slices of the specified NIO buffers without copying them.static ByteBufUnpooled. wrappedUnmodifiableBuffer(ByteBuf... buffers)static ByteBufByteBufUtil. writeAscii(ByteBufAllocator alloc, java.lang.CharSequence seq)ByteBufAbstractByteBuf. writeBoolean(boolean value)abstract ByteBufByteBuf. writeBoolean(boolean value)Sets the specified boolean at the currentwriterIndexand increases thewriterIndexby1in this buffer.ByteBufEmptyByteBuf. writeBoolean(boolean value)ByteBufSwappedByteBuf. writeBoolean(boolean value)Deprecated.ByteBufWrappedByteBuf. writeBoolean(boolean value)ByteBufAbstractByteBuf. writeByte(int value)abstract ByteBufByteBuf. writeByte(int value)Sets the specified byte at the currentwriterIndexand increases thewriterIndexby1in this buffer.ByteBufEmptyByteBuf. writeByte(int value)ByteBufSwappedByteBuf. writeByte(int value)Deprecated.ByteBufWrappedByteBuf. writeByte(int value)ByteBufAbstractByteBuf. writeBytes(byte[] src)ByteBufAbstractByteBuf. writeBytes(byte[] src, int srcIndex, int length)ByteBufAbstractByteBuf. writeBytes(ByteBuf src)ByteBufAbstractByteBuf. writeBytes(ByteBuf src, int length)ByteBufAbstractByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)ByteBufAbstractByteBuf. writeBytes(java.nio.ByteBuffer src)abstract ByteBufByteBuf. writeBytes(byte[] src)Transfers the specified source array's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=src.length).abstract ByteBufByteBuf. writeBytes(byte[] src, int srcIndex, int length)Transfers the specified source array's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. writeBytes(ByteBuf src)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexuntil the source buffer becomes unreadable, and increases thewriterIndexby the number of the transferred bytes.abstract ByteBufByteBuf. writeBytes(ByteBuf src, int length)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. writeBytes(java.nio.ByteBuffer src)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexuntil the source buffer's position reaches its limit, and increases thewriterIndexby the number of the transferred bytes.ByteBufEmptyByteBuf. writeBytes(byte[] src)ByteBufEmptyByteBuf. writeBytes(byte[] src, int srcIndex, int length)ByteBufEmptyByteBuf. writeBytes(ByteBuf src)ByteBufEmptyByteBuf. writeBytes(ByteBuf src, int length)ByteBufEmptyByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)ByteBufEmptyByteBuf. writeBytes(java.nio.ByteBuffer src)ByteBufSwappedByteBuf. writeBytes(byte[] src)Deprecated.ByteBufSwappedByteBuf. writeBytes(byte[] src, int srcIndex, int length)Deprecated.ByteBufSwappedByteBuf. writeBytes(ByteBuf src)Deprecated.ByteBufSwappedByteBuf. writeBytes(ByteBuf src, int length)Deprecated.ByteBufSwappedByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)Deprecated.ByteBufSwappedByteBuf. writeBytes(java.nio.ByteBuffer src)Deprecated.ByteBufWrappedByteBuf. writeBytes(byte[] src)ByteBufWrappedByteBuf. writeBytes(byte[] src, int srcIndex, int length)ByteBufWrappedByteBuf. writeBytes(ByteBuf src)ByteBufWrappedByteBuf. writeBytes(ByteBuf src, int length)ByteBufWrappedByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)ByteBufWrappedByteBuf. writeBytes(java.nio.ByteBuffer src)ByteBufAbstractByteBuf. writeChar(int value)abstract ByteBufByteBuf. writeChar(int value)Sets the specified 2-byte UTF-16 character at the currentwriterIndexand increases thewriterIndexby2in this buffer.ByteBufEmptyByteBuf. writeChar(int value)ByteBufSwappedByteBuf. writeChar(int value)Deprecated.ByteBufWrappedByteBuf. writeChar(int value)ByteBufAbstractByteBuf. writeDouble(double value)abstract ByteBufByteBuf. writeDouble(double value)Sets the specified 64-bit floating point number at the currentwriterIndexand increases thewriterIndexby8in this buffer.ByteBufEmptyByteBuf. writeDouble(double value)ByteBufSwappedByteBuf. writeDouble(double value)Deprecated.ByteBufWrappedByteBuf. writeDouble(double value)ByteBufByteBuf. writeDoubleLE(double value)Sets the specified 64-bit floating point number at the currentwriterIndexin Little Endian Byte Order and increases thewriterIndexby8in this buffer.ByteBufAbstractByteBuf. writeFloat(float value)abstract ByteBufByteBuf. writeFloat(float value)Sets the specified 32-bit floating point number at the currentwriterIndexand increases thewriterIndexby4in this buffer.ByteBufEmptyByteBuf. writeFloat(float value)ByteBufSwappedByteBuf. writeFloat(float value)Deprecated.ByteBufWrappedByteBuf. writeFloat(float value)ByteBufByteBuf. writeFloatLE(float value)Sets the specified 32-bit floating point number at the currentwriterIndexin Little Endian Byte Order and increases thewriterIndexby4in this buffer.ByteBufAbstractByteBuf. writeInt(int value)abstract ByteBufByteBuf. writeInt(int value)Sets the specified 32-bit integer at the currentwriterIndexand increases thewriterIndexby4in this buffer.ByteBufEmptyByteBuf. writeInt(int value)ByteBufSwappedByteBuf. writeInt(int value)Deprecated.ByteBufWrappedByteBuf. writeInt(int value)ByteBufAbstractByteBuf. writeIntLE(int value)abstract ByteBufByteBuf. writeIntLE(int value)Sets the specified 32-bit integer at the currentwriterIndexin the Little Endian Byte Order and increases thewriterIndexby4in this buffer.ByteBufEmptyByteBuf. writeIntLE(int value)ByteBufSwappedByteBuf. writeIntLE(int value)Deprecated.ByteBufWrappedByteBuf. writeIntLE(int value)ByteBufAbstractByteBuf. writeLong(long value)abstract ByteBufByteBuf. writeLong(long value)Sets the specified 64-bit long integer at the currentwriterIndexand increases thewriterIndexby8in this buffer.ByteBufEmptyByteBuf. writeLong(long value)ByteBufSwappedByteBuf. writeLong(long value)Deprecated.ByteBufWrappedByteBuf. writeLong(long value)ByteBufAbstractByteBuf. writeLongLE(long value)abstract ByteBufByteBuf. writeLongLE(long value)Sets the specified 64-bit long integer at the currentwriterIndexin the Little Endian Byte Order and increases thewriterIndexby8in this buffer.ByteBufEmptyByteBuf. writeLongLE(long value)ByteBufSwappedByteBuf. writeLongLE(long value)Deprecated.ByteBufWrappedByteBuf. writeLongLE(long value)ByteBufAbstractByteBuf. writeMedium(int value)abstract ByteBufByteBuf. writeMedium(int value)Sets the specified 24-bit medium integer at the currentwriterIndexand increases thewriterIndexby3in this buffer.ByteBufEmptyByteBuf. writeMedium(int value)ByteBufSwappedByteBuf. writeMedium(int value)Deprecated.ByteBufWrappedByteBuf. writeMedium(int value)static ByteBufByteBufUtil. writeMediumBE(ByteBuf buf, int mediumValue)Writes a big-endian 24-bit medium integer to the buffer.ByteBufAbstractByteBuf. writeMediumLE(int value)abstract ByteBufByteBuf. writeMediumLE(int value)Sets the specified 24-bit medium integer at the currentwriterIndexin the Little Endian Byte Order and increases thewriterIndexby3in this buffer.ByteBufEmptyByteBuf. writeMediumLE(int value)ByteBufSwappedByteBuf. writeMediumLE(int value)Deprecated.ByteBufWrappedByteBuf. writeMediumLE(int value)ByteBufAbstractByteBuf. writerIndex(int writerIndex)abstract ByteBufByteBuf. writerIndex(int writerIndex)Sets thewriterIndexof this buffer.ByteBufEmptyByteBuf. writerIndex(int writerIndex)ByteBufSwappedByteBuf. writerIndex(int writerIndex)Deprecated.ByteBufWrappedByteBuf. writerIndex(int writerIndex)ByteBufAbstractByteBuf. writeShort(int value)abstract ByteBufByteBuf. writeShort(int value)Sets the specified 16-bit short integer at the currentwriterIndexand increases thewriterIndexby2in this buffer.ByteBufEmptyByteBuf. writeShort(int value)ByteBufSwappedByteBuf. writeShort(int value)Deprecated.ByteBufWrappedByteBuf. writeShort(int value)static ByteBufByteBufUtil. writeShortBE(ByteBuf buf, int shortValue)Writes a big-endian 16-bit short integer to the buffer.ByteBufAbstractByteBuf. writeShortLE(int value)abstract ByteBufByteBuf. writeShortLE(int value)Sets the specified 16-bit short integer in the Little Endian Byte Order at the currentwriterIndexand increases thewriterIndexby2in this buffer.ByteBufEmptyByteBuf. writeShortLE(int value)ByteBufSwappedByteBuf. writeShortLE(int value)Deprecated.ByteBufWrappedByteBuf. writeShortLE(int value)static ByteBufByteBufUtil. writeUtf8(ByteBufAllocator alloc, java.lang.CharSequence seq)ByteBufAbstractByteBuf. writeZero(int length)abstract ByteBufByteBuf. writeZero(int length)Fills this buffer with NUL (0x00) starting at the currentwriterIndexand increases thewriterIndexby the specifiedlength.ByteBufEmptyByteBuf. writeZero(int length)ByteBufSwappedByteBuf. writeZero(int length)Deprecated.ByteBufUnpooledUnsafeDirectByteBuf. writeZero(int length)ByteBufUnpooledUnsafeHeapByteBuf. writeZero(int length)ByteBufWrappedByteBuf. writeZero(int length)Methods in io.netty.buffer that return types with arguments of type ByteBuf Modifier and Type Method Description java.util.List<ByteBuf>CompositeByteBuf. decompose(int offset, int length)Same withAbstractByteBuf.slice(int, int)except that this method returns a list.java.util.Iterator<ByteBuf>CompositeByteBuf. iterator()Methods in io.netty.buffer with parameters of type ByteBuf Modifier and Type Method Description CompositeByteBufCompositeByteBuf. addComponent(boolean increaseWriterIndex, int cIndex, ByteBuf buffer)Add the givenByteBufon the specific index and increase thewriterIndexifincreaseWriterIndexistrue.CompositeByteBufCompositeByteBuf. addComponent(boolean increaseWriterIndex, ByteBuf buffer)CompositeByteBufCompositeByteBuf. addComponent(int cIndex, ByteBuf buffer)Add the givenByteBufon the specific index.CompositeByteBufCompositeByteBuf. addComponent(ByteBuf buffer)Add the givenByteBuf.CompositeByteBufCompositeByteBuf. addComponents(boolean increaseWriterIndex, ByteBuf... buffers)CompositeByteBufCompositeByteBuf. addComponents(int cIndex, ByteBuf... buffers)Add the givenByteBufs on the specific indexCompositeByteBufCompositeByteBuf. addComponents(ByteBuf... buffers)Add the givenByteBufs.CompositeByteBufCompositeByteBuf. addFlattenedComponents(boolean increaseWriterIndex, ByteBuf buffer)static voidByteBufUtil. appendPrettyHexDump(java.lang.StringBuilder dump, ByteBuf buf)Appends the prettified multi-line hexadecimal dump of the specifiedByteBufto the specifiedStringBuilderthat is easy to read by humans.static voidByteBufUtil. appendPrettyHexDump(java.lang.StringBuilder dump, ByteBuf buf, int offset, int length)Appends the prettified multi-line hexadecimal dump of the specifiedByteBufto the specifiedStringBuilderthat is easy to read by humans, starting at the givenoffsetusing the givenlength.static intByteBufUtil. compare(ByteBuf bufferA, ByteBuf bufferB)Compares the two specified buffers as described incompareTo(ByteBuf).intAbstractByteBuf. compareTo(ByteBuf that)abstract intByteBuf. compareTo(ByteBuf buffer)Compares the content of the specified buffer to the content of this buffer.intEmptyByteBuf. compareTo(ByteBuf buffer)intSwappedByteBuf. compareTo(ByteBuf buffer)Deprecated.intWrappedByteBuf. compareTo(ByteBuf buffer)static ByteBufUnpooled. copiedBuffer(ByteBuf buffer)Creates a new buffer whose content is a copy of the specifiedbuffer's readable bytes.static ByteBufUnpooled. copiedBuffer(ByteBuf... buffers)Creates a new buffer whose content is a merged copy of the specifiedbuffers' readable bytes.static voidByteBufUtil. copy(AsciiString src, int srcIdx, ByteBuf dst, int length)static voidByteBufUtil. copy(AsciiString src, int srcIdx, ByteBuf dst, int dstIdx, int length)static voidByteBufUtil. copy(AsciiString src, ByteBuf dst)static ByteBufByteBufUtil. ensureAccessible(ByteBuf buffer)static booleanByteBufUtil. equals(ByteBuf a, int aStartIndex, ByteBuf b, int bStartIndex, int length)Returnstrueif and only if the two specified buffers are identical to each other forlengthbytes starting ataStartIndexindex for theabuffer andbStartIndexindex for thebbuffer.static booleanByteBufUtil. equals(ByteBuf bufferA, ByteBuf bufferB)Returnstrueif and only if the two specified buffers are identical to each other as described inequals(Object).ByteBufAbstractByteBuf. getBytes(int index, ByteBuf dst)ByteBufAbstractByteBuf. getBytes(int index, ByteBuf dst, int length)abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst)Transfers this buffer's data to the specified destination starting at the specified absoluteindexuntil the destination becomes non-writable.abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst, int length)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.abstract ByteBufByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the specified absoluteindex.static byte[]ByteBufUtil. getBytes(ByteBuf buf)Create a copy of the underlying storage frombufinto a byte array.static byte[]ByteBufUtil. getBytes(ByteBuf buf, int start, int length)Create a copy of the underlying storage frombufinto a byte array.static byte[]ByteBufUtil. getBytes(ByteBuf buf, int start, int length, boolean copy)Return an array of the underlying storage frombufinto a byte array.CompositeByteBufCompositeByteBuf. getBytes(int index, ByteBuf dst)CompositeByteBufCompositeByteBuf. getBytes(int index, ByteBuf dst, int length)CompositeByteBufCompositeByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufDuplicatedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst)ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst, int length)ByteBufEmptyByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufReadOnlyByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst, int length)Deprecated.ByteBufSwappedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufUnpooledDirectByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufUnpooledHeapByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufUnpooledUnsafeDirectByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst, int length)ByteBufWrappedByteBuf. getBytes(int index, ByteBuf dst, int dstIndex, int length)static intByteBufUtil. hashCode(ByteBuf buffer)Calculates the hash code of the specified buffer.static java.lang.StringByteBufUtil. hexDump(ByteBuf buffer)Returns a hex dump of the specified buffer's readable bytes.static java.lang.StringByteBufUtil. hexDump(ByteBuf buffer, int fromIndex, int length)Returns a hex dump of the specified buffer's sub-region.static intByteBufUtil. indexOf(ByteBuf buffer, int fromIndex, int toIndex, byte value)The default implementation ofindexOf(int, int, byte).static intByteBufUtil. indexOf(ByteBuf needle, ByteBuf haystack)Returns the reader index of needle in haystack, or -1 if needle is not in haystack.static booleanByteBufUtil. isAccessible(ByteBuf buffer)static booleanByteBufUtil. isText(ByteBuf buf, int index, int length, java.nio.charset.Charset charset)Returnstrueif the specifiedByteBufstarting atindexwithlengthis valid text using the givenCharset, otherwise returnfalse.static booleanByteBufUtil. isText(ByteBuf buf, java.nio.charset.Charset charset)static java.lang.StringByteBufUtil. prettyHexDump(ByteBuf buffer)Returns a multi-line hexadecimal dump of the specifiedByteBufthat is easy to read by humans.static java.lang.StringByteBufUtil. prettyHexDump(ByteBuf buffer, int offset, int length)Returns a multi-line hexadecimal dump of the specifiedByteBufthat is easy to read by humans, starting at the givenoffsetusing the givenlength.ByteBufAbstractByteBuf. readBytes(ByteBuf dst)ByteBufAbstractByteBuf. readBytes(ByteBuf dst, int length)ByteBufAbstractByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)abstract ByteBufByteBuf. readBytes(ByteBuf dst)Transfers this buffer's data to the specified destination starting at the currentreaderIndexuntil the destination becomes non-writable, and increases thereaderIndexby the number of the transferred bytes.abstract ByteBufByteBuf. readBytes(ByteBuf dst, int length)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)Transfers this buffer's data to the specified destination starting at the currentreaderIndexand increases thereaderIndexby the number of the transferred bytes (=length).static ByteBufByteBufUtil. readBytes(ByteBufAllocator alloc, ByteBuf buffer, int length)Read the given amount of bytes into a newByteBufthat is allocated from theByteBufAllocator.CompositeByteBufCompositeByteBuf. readBytes(ByteBuf dst)CompositeByteBufCompositeByteBuf. readBytes(ByteBuf dst, int length)CompositeByteBufCompositeByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)ByteBufEmptyByteBuf. readBytes(ByteBuf dst)ByteBufEmptyByteBuf. readBytes(ByteBuf dst, int length)ByteBufEmptyByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)ByteBufSwappedByteBuf. readBytes(ByteBuf dst)Deprecated.ByteBufSwappedByteBuf. readBytes(ByteBuf dst, int length)Deprecated.ByteBufSwappedByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)Deprecated.ByteBufWrappedByteBuf. readBytes(ByteBuf dst)ByteBufWrappedByteBuf. readBytes(ByteBuf dst, int length)ByteBufWrappedByteBuf. readBytes(ByteBuf dst, int dstIndex, int length)static intByteBufUtil. readIntBE(ByteBuf buf)Reads a big-endian 32-bit integer from the buffer.static intByteBufUtil. readUnsignedShortBE(ByteBuf buf)Reads a big-endian unsigned 16-bit short integer from the buffer.ByteBufHolderByteBufHolder. replace(ByteBuf content)Returns a newByteBufHolderwhich contains the specifiedcontent.ByteBufHolderDefaultByteBufHolder. replace(ByteBuf content)Returns a newByteBufHolderwhich contains the specifiedcontent.static intByteBufUtil. reserveAndWriteUtf8(ByteBuf buf, java.lang.CharSequence seq, int reserveBytes)static intByteBufUtil. reserveAndWriteUtf8(ByteBuf buf, java.lang.CharSequence seq, int start, int end, int reserveBytes)Equivalent tobut avoids subsequence object allocation if possible.reserveAndWriteUtf8(buf, seq.subSequence(start, end), reserveBytes)ByteBufAbstractByteBuf. setBytes(int index, ByteBuf src)ByteBufAbstractByteBuf. setBytes(int index, ByteBuf src, int length)abstract ByteBufByteBuf. setBytes(int index, ByteBuf src)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindexuntil the source buffer becomes unreadable.abstract ByteBufByteBuf. setBytes(int index, ByteBuf src, int length)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex.abstract ByteBufByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Transfers the specified source buffer's data to this buffer starting at the specified absoluteindex.CompositeByteBufCompositeByteBuf. setBytes(int index, ByteBuf src)CompositeByteBufCompositeByteBuf. setBytes(int index, ByteBuf src, int length)CompositeByteBufCompositeByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufDuplicatedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src)ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src, int length)ByteBufEmptyByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufReadOnlyByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src, int length)Deprecated.ByteBufSwappedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)Deprecated.ByteBufUnpooledDirectByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufUnpooledHeapByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufUnpooledUnsafeDirectByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src, int length)ByteBufWrappedByteBuf. setBytes(int index, ByteBuf src, int srcIndex, int length)static ByteBufByteBufUtil. setShortBE(ByteBuf buf, int index, int shortValue)Sets a big-endian 16-bit short integer to the buffer.protected static ByteBufAbstractByteBufAllocator. toLeakAwareBuffer(ByteBuf buf)static ByteBufUnpooled. unmodifiableBuffer(ByteBuf buffer)Deprecated.UseasReadOnly().static ByteBufUnpooled. unmodifiableBuffer(ByteBuf... buffers)Deprecated.static ByteBufUnpooled. unreleasableBuffer(ByteBuf buf)Return a unreleasable view on the givenByteBufwhich will just ignore release and retain calls.static ByteBufUnpooled. wrappedBuffer(int maxNumComponents, ByteBuf... buffers)Creates a new big-endian composite buffer which wraps the readable bytes of the specified buffers without copying them.static ByteBufUnpooled. wrappedBuffer(ByteBuf buffer)Creates a new buffer which wraps the specified buffer's readable bytes.static ByteBufUnpooled. wrappedBuffer(ByteBuf... buffers)Creates a new big-endian composite buffer which wraps the readable bytes of the specified buffers without copying them.static ByteBufUnpooled. wrappedUnmodifiableBuffer(ByteBuf... buffers)static intByteBufUtil. writeAscii(ByteBuf buf, java.lang.CharSequence seq)ByteBufAbstractByteBuf. writeBytes(ByteBuf src)ByteBufAbstractByteBuf. writeBytes(ByteBuf src, int length)ByteBufAbstractByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)abstract ByteBufByteBuf. writeBytes(ByteBuf src)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexuntil the source buffer becomes unreadable, and increases thewriterIndexby the number of the transferred bytes.abstract ByteBufByteBuf. writeBytes(ByteBuf src, int length)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=length).abstract ByteBufByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)Transfers the specified source buffer's data to this buffer starting at the currentwriterIndexand increases thewriterIndexby the number of the transferred bytes (=length).CompositeByteBufCompositeByteBuf. writeBytes(ByteBuf src)CompositeByteBufCompositeByteBuf. writeBytes(ByteBuf src, int length)CompositeByteBufCompositeByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)ByteBufEmptyByteBuf. writeBytes(ByteBuf src)ByteBufEmptyByteBuf. writeBytes(ByteBuf src, int length)ByteBufEmptyByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)ByteBufSwappedByteBuf. writeBytes(ByteBuf src)Deprecated.ByteBufSwappedByteBuf. writeBytes(ByteBuf src, int length)Deprecated.ByteBufSwappedByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)Deprecated.ByteBufWrappedByteBuf. writeBytes(ByteBuf src)ByteBufWrappedByteBuf. writeBytes(ByteBuf src, int length)ByteBufWrappedByteBuf. writeBytes(ByteBuf src, int srcIndex, int length)static ByteBufByteBufUtil. writeMediumBE(ByteBuf buf, int mediumValue)Writes a big-endian 24-bit medium integer to the buffer.static ByteBufByteBufUtil. writeShortBE(ByteBuf buf, int shortValue)Writes a big-endian 16-bit short integer to the buffer.static intByteBufUtil. writeUtf8(ByteBuf buf, java.lang.CharSequence seq)static intByteBufUtil. writeUtf8(ByteBuf buf, java.lang.CharSequence seq, int start, int end)Equivalent tobut avoids subsequence object allocation.writeUtf8(buf, seq.subSequence(start, end))Method parameters in io.netty.buffer with type arguments of type ByteBuf Modifier and Type Method Description CompositeByteBufCompositeByteBuf. addComponents(boolean increaseWriterIndex, java.lang.Iterable<ByteBuf> buffers)CompositeByteBufCompositeByteBuf. addComponents(int cIndex, java.lang.Iterable<ByteBuf> buffers)Add the givenByteBufs on the specific index Be aware that this method does not increase thewriterIndexof theCompositeByteBuf.CompositeByteBufCompositeByteBuf. addComponents(java.lang.Iterable<ByteBuf> buffers)Add the givenByteBufs.Constructors in io.netty.buffer with parameters of type ByteBuf Constructor Description ByteBufInputStream(ByteBuf buffer)Creates a new stream which reads data from the specifiedbufferstarting at the currentreaderIndexand ending at the currentwriterIndex.ByteBufInputStream(ByteBuf buffer, boolean releaseOnClose)Creates a new stream which reads data from the specifiedbufferstarting at the currentreaderIndexand ending at the currentwriterIndex.ByteBufInputStream(ByteBuf buffer, int length)Creates a new stream which reads data from the specifiedbufferstarting at the currentreaderIndexand ending atreaderIndex + length.ByteBufInputStream(ByteBuf buffer, int length, boolean releaseOnClose)Creates a new stream which reads data from the specifiedbufferstarting at the currentreaderIndexand ending atreaderIndex + length.ByteBufOutputStream(ByteBuf buffer)Creates a new stream which writes data to the specifiedbuffer.ByteBufOutputStream(ByteBuf buffer, boolean releaseOnClose)Creates a new stream which writes data to the specifiedbuffer.CompositeByteBuf(ByteBufAllocator alloc, boolean direct, int maxNumComponents, ByteBuf... buffers)DefaultByteBufHolder(ByteBuf data)DuplicatedByteBuf(ByteBuf buffer)Deprecated.ReadOnlyByteBuf(ByteBuf buffer)Deprecated.SlicedByteBuf(ByteBuf buffer, int index, int length)Deprecated.SwappedByteBuf(ByteBuf buf)Deprecated.WrappedByteBuf(ByteBuf buf)Constructor parameters in io.netty.buffer with type arguments of type ByteBuf Constructor Description CompositeByteBuf(ByteBufAllocator alloc, boolean direct, int maxNumComponents, java.lang.Iterable<ByteBuf> buffers) -
Uses of ByteBuf in io.netty.channel
Methods in io.netty.channel that return ByteBuf Modifier and Type Method Description ByteBufDefaultMaxMessagesRecvByteBufAllocator.MaxMessageHandle. allocate(ByteBufAllocator alloc)ByteBufRecvByteBufAllocator.DelegatingHandle. allocate(ByteBufAllocator alloc)ByteBufRecvByteBufAllocator.Handle. allocate(ByteBufAllocator alloc)Deprecated.Creates a new receive buffer whose capacity is probably large enough to read all inbound data and small enough not to waste its space.ByteBufPreferHeapByteBufAllocator. buffer()ByteBufPreferHeapByteBufAllocator. buffer(int initialCapacity)ByteBufPreferHeapByteBufAllocator. buffer(int initialCapacity, int maxCapacity)protected abstract ByteBufAbstractCoalescingBufferQueue. compose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)Calculate the result ofcurrent + next.protected ByteBufCoalescingBufferQueue. compose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)protected ByteBufAbstractCoalescingBufferQueue. composeFirst(ByteBufAllocator allocator, ByteBuf first)Deprecated.Use {AbstractCoalescingBufferQueue#composeFirst(ByteBufAllocator, ByteBuf, int)}protected ByteBufAbstractCoalescingBufferQueue. composeFirst(ByteBufAllocator allocator, ByteBuf first, int bufferSize)Calculate the firstByteBufwhich will be used in subsequent calls toAbstractCoalescingBufferQueue.compose(ByteBufAllocator, ByteBuf, ByteBuf).protected ByteBufAbstractCoalescingBufferQueue. composeIntoComposite(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)protected ByteBufAbstractCoalescingBufferQueue. copyAndCompose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)ByteBufPreferHeapByteBufAllocator. directBuffer()ByteBufPreferHeapByteBufAllocator. directBuffer(int initialCapacity)ByteBufPreferHeapByteBufAllocator. directBuffer(int initialCapacity, int maxCapacity)ByteBufPreferHeapByteBufAllocator. heapBuffer()ByteBufPreferHeapByteBufAllocator. heapBuffer(int initialCapacity)ByteBufPreferHeapByteBufAllocator. heapBuffer(int initialCapacity, int maxCapacity)ByteBufPreferHeapByteBufAllocator. ioBuffer()ByteBufPreferHeapByteBufAllocator. ioBuffer(int initialCapacity)ByteBufPreferHeapByteBufAllocator. ioBuffer(int initialCapacity, int maxCapacity)ByteBufAbstractCoalescingBufferQueue. remove(ByteBufAllocator alloc, int bytes, ChannelPromise aggregatePromise)Remove aByteBuffrom the queue with the specified number of bytes.ByteBufCoalescingBufferQueue. remove(int bytes, ChannelPromise aggregatePromise)Remove aByteBuffrom the queue with the specified number of bytes.protected abstract ByteBufAbstractCoalescingBufferQueue. removeEmptyValue()The value to return whenAbstractCoalescingBufferQueue.remove(ByteBufAllocator, int, ChannelPromise)is called but the queue is empty.protected ByteBufCoalescingBufferQueue. removeEmptyValue()ByteBufAbstractCoalescingBufferQueue. removeFirst(ChannelPromise aggregatePromise)Remove the firstByteBuffrom the queue.Methods in io.netty.channel with parameters of type ByteBuf Modifier and Type Method Description voidAbstractCoalescingBufferQueue. add(ByteBuf buf)Add a buffer to the end of the queue.voidAbstractCoalescingBufferQueue. add(ByteBuf buf, ChannelFutureListener listener)Add a buffer to the end of the queue and associate a listener with it that should be completed when all the buffers bytes have been consumed from the queue and written.voidAbstractCoalescingBufferQueue. add(ByteBuf buf, ChannelPromise promise)Add a buffer to the end of the queue and associate a promise with it that should be completed when all the buffer's bytes have been consumed from the queue and written.voidAbstractCoalescingBufferQueue. addFirst(ByteBuf buf, ChannelPromise promise)Add a buffer to the front of the queue and associate a promise with it that should be completed when all the buffer's bytes have been consumed from the queue and written.protected abstract ByteBufAbstractCoalescingBufferQueue. compose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)Calculate the result ofcurrent + next.protected ByteBufCoalescingBufferQueue. compose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)protected ByteBufAbstractCoalescingBufferQueue. composeFirst(ByteBufAllocator allocator, ByteBuf first)Deprecated.Use {AbstractCoalescingBufferQueue#composeFirst(ByteBufAllocator, ByteBuf, int)}protected ByteBufAbstractCoalescingBufferQueue. composeFirst(ByteBufAllocator allocator, ByteBuf first, int bufferSize)Calculate the firstByteBufwhich will be used in subsequent calls toAbstractCoalescingBufferQueue.compose(ByteBufAllocator, ByteBuf, ByteBuf).protected ByteBufAbstractCoalescingBufferQueue. composeIntoComposite(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next)protected ByteBufAbstractCoalescingBufferQueue. copyAndCompose(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf next) -
Uses of ByteBuf in io.netty.channel.epoll
Methods in io.netty.channel.epoll with parameters of type ByteBuf Modifier and Type Method Description SegmentedDatagramPacketSegmentedDatagramPacket. replace(ByteBuf content)Deprecated.Constructors in io.netty.channel.epoll with parameters of type ByteBuf Constructor Description SegmentedDatagramPacket(ByteBuf data, int segmentSize, java.net.InetSocketAddress recipient)Deprecated.Create a new instance.SegmentedDatagramPacket(ByteBuf data, int segmentSize, java.net.InetSocketAddress recipient, java.net.InetSocketAddress sender)Deprecated.Create a new instance. -
Uses of ByteBuf in io.netty.channel.nio
Methods in io.netty.channel.nio that return ByteBuf Modifier and Type Method Description protected ByteBufAbstractNioChannel. newDirectBuffer(ByteBuf buf)Returns an off-heap copy of the specifiedByteBuf, and releases the original one.protected ByteBufAbstractNioChannel. newDirectBuffer(ReferenceCounted holder, ByteBuf buf)Returns an off-heap copy of the specifiedByteBuf, and releases the specified holder.Methods in io.netty.channel.nio with parameters of type ByteBuf Modifier and Type Method Description protected abstract intAbstractNioByteChannel. doReadBytes(ByteBuf buf)Read bytes into the givenByteBufand return the amount.protected abstract intAbstractNioByteChannel. doWriteBytes(ByteBuf buf)Write bytes form the givenByteBufto the underlyingChannel.protected ByteBufAbstractNioChannel. newDirectBuffer(ByteBuf buf)Returns an off-heap copy of the specifiedByteBuf, and releases the original one.protected ByteBufAbstractNioChannel. newDirectBuffer(ReferenceCounted holder, ByteBuf buf)Returns an off-heap copy of the specifiedByteBuf, and releases the specified holder. -
Uses of ByteBuf in io.netty.channel.oio
Methods in io.netty.channel.oio with parameters of type ByteBuf Modifier and Type Method Description protected abstract intAbstractOioByteChannel. doReadBytes(ByteBuf buf)Deprecated.Read bytes from the underlying Socket.protected intOioByteStreamChannel. doReadBytes(ByteBuf buf)Deprecated.protected abstract voidAbstractOioByteChannel. doWriteBytes(ByteBuf buf)Deprecated.Write the data which is hold by theByteBufto the underlying Socket.protected voidOioByteStreamChannel. doWriteBytes(ByteBuf buf)Deprecated. -
Uses of ByteBuf in io.netty.channel.sctp
Methods in io.netty.channel.sctp with parameters of type ByteBuf Modifier and Type Method Description SctpMessageSctpMessage. replace(ByteBuf content)Constructors in io.netty.channel.sctp with parameters of type ByteBuf Constructor Description SctpMessage(int protocolIdentifier, int streamIdentifier, boolean unordered, ByteBuf payloadBuffer)Essential data that is being carried within SCTP Data ChunkSctpMessage(int protocolIdentifier, int streamIdentifier, ByteBuf payloadBuffer)Essential data that is being carried within SCTP Data ChunkSctpMessage(com.sun.nio.sctp.MessageInfo msgInfo, ByteBuf payloadBuffer)Essential data that is being carried within SCTP Data Chunk -
Uses of ByteBuf in io.netty.channel.socket
Methods in io.netty.channel.socket with parameters of type ByteBuf Modifier and Type Method Description DatagramPacketDatagramPacket. replace(ByteBuf content)Constructors in io.netty.channel.socket with parameters of type ByteBuf Constructor Description DatagramPacket(ByteBuf data, java.net.InetSocketAddress recipient)Create a new instance with the specified packetdataandrecipientaddress.DatagramPacket(ByteBuf data, java.net.InetSocketAddress recipient, java.net.InetSocketAddress sender)Create a new instance with the specified packetdata,recipientaddress, andsenderaddress. -
Uses of ByteBuf in io.netty.channel.socket.nio
Methods in io.netty.channel.socket.nio with parameters of type ByteBuf Modifier and Type Method Description protected intNioDomainSocketChannel. doReadBytes(ByteBuf byteBuf)protected intNioSocketChannel. doReadBytes(ByteBuf byteBuf)protected intNioDomainSocketChannel. doWriteBytes(ByteBuf buf)protected intNioSocketChannel. doWriteBytes(ByteBuf buf) -
Uses of ByteBuf in io.netty.channel.socket.oio
Methods in io.netty.channel.socket.oio with parameters of type ByteBuf Modifier and Type Method Description protected intOioSocketChannel. doReadBytes(ByteBuf buf)Deprecated. -
Uses of ByteBuf in io.netty.channel.udt
Methods in io.netty.channel.udt with parameters of type ByteBuf Modifier and Type Method Description UdtMessageUdtMessage. replace(ByteBuf content)Deprecated.Constructors in io.netty.channel.udt with parameters of type ByteBuf Constructor Description UdtMessage(ByteBuf data)Deprecated. -
Uses of ByteBuf in io.netty.channel.udt.nio
Methods in io.netty.channel.udt.nio with parameters of type ByteBuf Modifier and Type Method Description protected intNioUdtByteConnectorChannel. doReadBytes(ByteBuf byteBuf)Deprecated.protected intNioUdtByteConnectorChannel. doWriteBytes(ByteBuf byteBuf)Deprecated. -
Uses of ByteBuf in io.netty.channel.unix
Methods in io.netty.channel.unix that return ByteBuf Modifier and Type Method Description ByteBufPreferredDirectByteBufAllocator. buffer()ByteBufPreferredDirectByteBufAllocator. buffer(int initialCapacity)ByteBufPreferredDirectByteBufAllocator. buffer(int initialCapacity, int maxCapacity)ByteBufPreferredDirectByteBufAllocator. directBuffer()ByteBufPreferredDirectByteBufAllocator. directBuffer(int initialCapacity)ByteBufPreferredDirectByteBufAllocator. directBuffer(int initialCapacity, int maxCapacity)ByteBufPreferredDirectByteBufAllocator. heapBuffer()ByteBufPreferredDirectByteBufAllocator. heapBuffer(int initialCapacity)ByteBufPreferredDirectByteBufAllocator. heapBuffer(int initialCapacity, int maxCapacity)ByteBufPreferredDirectByteBufAllocator. ioBuffer()ByteBufPreferredDirectByteBufAllocator. ioBuffer(int initialCapacity)ByteBufPreferredDirectByteBufAllocator. ioBuffer(int initialCapacity, int maxCapacity)Methods in io.netty.channel.unix with parameters of type ByteBuf Modifier and Type Method Description booleanIovArray. add(ByteBuf buf)Deprecated.booleanIovArray. add(ByteBuf buf, int offset, int len)static booleanUnixChannelUtil. isBufferCopyNeededForWrite(ByteBuf byteBuf)Checks if the specified buffer has memory address or is composed of n(n <= IOV_MAX) NIO direct buffers.DomainDatagramPacketDomainDatagramPacket. replace(ByteBuf content)SegmentedDatagramPacketSegmentedDatagramPacket. replace(ByteBuf content)Constructors in io.netty.channel.unix with parameters of type ByteBuf Constructor Description DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient)Create a new instance with the specified packetdataandrecipientaddress.DomainDatagramPacket(ByteBuf data, DomainSocketAddress recipient, DomainSocketAddress sender)Create a new instance with the specified packetdata,recipientaddress, andsenderaddress.IovArray(ByteBuf memory)Deprecated.UseIovArray(int)instead.SegmentedDatagramPacket(ByteBuf data, int segmentSize, java.net.InetSocketAddress recipient)Create a new instance.SegmentedDatagramPacket(ByteBuf data, int segmentSize, java.net.InetSocketAddress recipient, java.net.InetSocketAddress sender)Create a new instance. -
Uses of ByteBuf in io.netty.channel.uring
Methods in io.netty.channel.uring that return ByteBuf Modifier and Type Method Description ByteBufAbstractIoUringBufferRingAllocator. allocate()ByteBufIoUringBufferRingAllocator. allocate()Creates a new receive buffer to use by the buffer ring.Method parameters in io.netty.channel.uring with type arguments of type ByteBuf Modifier and Type Method Description voidAbstractIoUringBufferRingAllocator. allocateBatch(java.util.function.Consumer<ByteBuf> consumer, int number)default voidIoUringBufferRingAllocator. allocateBatch(java.util.function.Consumer<ByteBuf> consumer, int num)Fill innumofByteBufs. -
Uses of ByteBuf in io.netty.handler.codec
Methods in io.netty.handler.codec that return ByteBuf Modifier and Type Method Description protected ByteBufMessageToByteEncoder. allocateBuffer(ChannelHandlerContext ctx, I msg, boolean preferDirect)Allocate aByteBufwhich will be used as argument of#encode(ChannelHandlerContext, I, ByteBuf).ByteBufByteToMessageDecoder.Cumulator. cumulate(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf in)protected ByteBufLengthFieldBasedFrameDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Extract the sub-region of the specified buffer.protected ByteBufByteToMessageDecoder. internalBuffer()Returns the internal cumulative buffer of this decoder.static ByteBuf[]Delimiters. lineDelimiter()ReturnsCR ('\r')andLF ('\n')delimiters, which could be used for text-based line protocols.static ByteBuf[]Delimiters. nulDelimiter()Returns aNUL (0x00)delimiter, which could be used for Flash XML socket or any similar protocols.Methods in io.netty.handler.codec with parameters of type ByteBuf Modifier and Type Method Description protected abstract OMessageAggregator. beginAggregation(S start, ByteBuf content)Creates a new aggregated message from the specified start message and the specified content.protected voidByteToMessageDecoder. callDecode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)Called once data should be decoded from the givenByteBuf.protected voidReplayingDecoder. callDecode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)ByteBufByteToMessageDecoder.Cumulator. cumulate(ByteBufAllocator alloc, ByteBuf cumulation, ByteBuf in)protected abstract voidByteToMessageCodec. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected abstract voidByteToMessageDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)Decode the from oneByteBufto an other.protected java.lang.ObjectDelimiterBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer)Create a frame out of theByteBufand return it.protected voidDelimiterBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected java.lang.ObjectFixedLengthFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)Create a frame out of theByteBufand return it.protected voidFixedLengthFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected java.lang.ObjectLengthFieldBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)Create a frame out of theByteBufand return it.protected voidLengthFieldBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected java.lang.ObjectLineBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer)Create a frame out of theByteBufand return it.protected voidLineBasedFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidByteToMessageCodec. decodeLast(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidByteToMessageDecoder. decodeLast(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)Is called one last time when theChannelHandlerContextgoes in-active.protected abstract voidByteToMessageCodec. encode(ChannelHandlerContext ctx, I msg, ByteBuf out)protected voidLengthFieldPrepender. encode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out)protected abstract voidMessageToByteEncoder. encode(ChannelHandlerContext ctx, I msg, ByteBuf out)Encode a message into aByteBuf.protected ByteBufLengthFieldBasedFrameDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Extract the sub-region of the specified buffer.protected longLengthFieldBasedFrameDecoder. getUnadjustedFrameLength(ByteBuf buf, int offset, int length, java.nio.ByteOrder order)Decodes the specified region of the buffer into an unadjusted frame length.Constructors in io.netty.handler.codec with parameters of type ByteBuf Constructor Description AsciiHeadersEncoder(ByteBuf buf)AsciiHeadersEncoder(ByteBuf buf, AsciiHeadersEncoder.SeparatorType separatorType, AsciiHeadersEncoder.NewlineType newlineType)DelimiterBasedFrameDecoder(int maxFrameLength, boolean stripDelimiter, boolean failFast, ByteBuf delimiter)Creates a new instance.DelimiterBasedFrameDecoder(int maxFrameLength, boolean stripDelimiter, boolean failFast, ByteBuf... delimiters)Creates a new instance.DelimiterBasedFrameDecoder(int maxFrameLength, boolean stripDelimiter, ByteBuf delimiter)Creates a new instance.DelimiterBasedFrameDecoder(int maxFrameLength, boolean stripDelimiter, ByteBuf... delimiters)Creates a new instance.DelimiterBasedFrameDecoder(int maxFrameLength, ByteBuf delimiter)Creates a new instance.DelimiterBasedFrameDecoder(int maxFrameLength, ByteBuf... delimiters)Creates a new instance.Constructor parameters in io.netty.handler.codec with type arguments of type ByteBuf Constructor Description DatagramPacketDecoder(MessageToMessageDecoder<ByteBuf> decoder)Create aDatagramPacketdecoder using the specifiedByteBufdecoder. -
Uses of ByteBuf in io.netty.handler.codec.base64
Methods in io.netty.handler.codec.base64 that return ByteBuf Modifier and Type Method Description static ByteBufBase64. decode(ByteBuf src)static ByteBufBase64. decode(ByteBuf src, int off, int len)static ByteBufBase64. decode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufBase64. decode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufBase64. decode(ByteBuf src, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src)static ByteBufBase64. encode(ByteBuf src, boolean breakLines)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, int off, int len)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufBase64. encode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, Base64Dialect dialect, boolean addPadding)Methods in io.netty.handler.codec.base64 with parameters of type ByteBuf Modifier and Type Method Description static ByteBufBase64. decode(ByteBuf src)static ByteBufBase64. decode(ByteBuf src, int off, int len)static ByteBufBase64. decode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufBase64. decode(ByteBuf src, int off, int len, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufBase64. decode(ByteBuf src, Base64Dialect dialect)protected voidBase64Decoder. decode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out)static ByteBufBase64. encode(ByteBuf src)static ByteBufBase64. encode(ByteBuf src, boolean breakLines)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, int off, int len)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, boolean addPadding)static ByteBufBase64. encode(ByteBuf src, int off, int len, boolean breakLines, Base64Dialect dialect, ByteBufAllocator allocator)static ByteBufBase64. encode(ByteBuf src, int off, int len, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, Base64Dialect dialect)static ByteBufBase64. encode(ByteBuf src, Base64Dialect dialect, boolean addPadding)protected voidBase64Encoder. encode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.codec.bytes
Methods in io.netty.handler.codec.bytes with parameters of type ByteBuf Modifier and Type Method Description protected voidByteArrayDecoder. decode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.codec.compression
Methods in io.netty.handler.codec.compression that return ByteBuf Modifier and Type Method Description protected ByteBufBrotliEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufJdkZlibEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufLz4FrameEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufLzmaFrameEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf in, boolean preferDirect)protected ByteBufZstdEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufZlibDecoder. prepareDecompressBuffer(ChannelHandlerContext ctx, ByteBuf buffer, int preferredSize)Allocate or expand the decompression buffer, without exceeding the maximum allocation.Methods in io.netty.handler.codec.compression with parameters of type ByteBuf Modifier and Type Method Description protected ByteBufBrotliEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufJdkZlibEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufLz4FrameEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected ByteBufLzmaFrameEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf in, boolean preferDirect)protected ByteBufZstdEncoder. allocateBuffer(ChannelHandlerContext ctx, ByteBuf msg, boolean preferDirect)protected voidBrotliDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidBzip2Decoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidFastLzFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidJdkZlibDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidJZlibDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidLz4FrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidLzfDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)voidSnappy. decode(ByteBuf in, ByteBuf out)protected voidSnappyFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidZstdDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidJdkZlibDecoder. decompressionBufferExhausted(ByteBuf buffer)protected voidJZlibDecoder. decompressionBufferExhausted(ByteBuf buffer)protected voidZlibDecoder. decompressionBufferExhausted(ByteBuf buffer)Called when the decompression buffer cannot be expanded further.protected voidBrotliEncoder. encode(ChannelHandlerContext ctx, ByteBuf msg, ByteBuf out)protected voidBzip2Encoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected voidFastLzFrameEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected voidJdkZlibEncoder. encode(ChannelHandlerContext ctx, ByteBuf uncompressed, ByteBuf out)protected voidJZlibEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected voidLz4FrameEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)Encode a message into aByteBuf.protected voidLzfEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected voidLzmaFrameEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)voidSnappy. encode(ByteBuf in, ByteBuf out, int length)protected voidSnappyFrameEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected voidZstdEncoder. encode(ChannelHandlerContext ctx, ByteBuf in, ByteBuf out)protected ByteBufZlibDecoder. prepareDecompressBuffer(ChannelHandlerContext ctx, ByteBuf buffer, int preferredSize)Allocate or expand the decompression buffer, without exceeding the maximum allocation.voidLz4XXHash32. update(ByteBuf b, int off, int len) -
Uses of ByteBuf in io.netty.handler.codec.dns
Methods in io.netty.handler.codec.dns that return ByteBuf Modifier and Type Method Description protected ByteBufDatagramDnsQueryEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsQuery,java.net.InetSocketAddress> msg)Allocate aByteBufwhich will be used for constructing a datagram packet.protected ByteBufDatagramDnsResponseEncoder. allocateBuffer(ChannelHandlerContext ctx, AddressedEnvelope<DnsResponse,java.net.InetSocketAddress> msg)Allocate aByteBufwhich will be used for constructing a datagram packet.protected ByteBufTcpDnsQueryEncoder. allocateBuffer(ChannelHandlerContext ctx, DnsQuery msg, boolean preferDirect)ByteBufDefaultDnsRawRecord. content()protected ByteBufTcpDnsResponseDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Methods in io.netty.handler.codec.dns with parameters of type ByteBuf Modifier and Type Method Description protected java.lang.ObjectTcpDnsQueryDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)protected java.lang.ObjectTcpDnsResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)static java.lang.StringDefaultDnsRecordDecoder. decodeName(ByteBuf in)Retrieves a domain name given a buffer containing a DNS packet.protected java.lang.StringDefaultDnsRecordDecoder. decodeName0(ByteBuf in)Retrieves a domain name given a buffer containing a DNS packet.DnsQuestionDefaultDnsRecordDecoder. decodeQuestion(ByteBuf in)DnsQuestionDnsRecordDecoder. decodeQuestion(ByteBuf in)Decodes a DNS question into its object representation.<T extends DnsRecord>
TDefaultDnsRecordDecoder. decodeRecord(ByteBuf in)protected DnsRecordDefaultDnsRecordDecoder. decodeRecord(java.lang.String name, DnsRecordType type, int dnsClass, long timeToLive, ByteBuf in, int offset, int length)Decodes a record from the information decoded so far byDefaultDnsRecordDecoder.decodeRecord(ByteBuf).<T extends DnsRecord>
TDnsRecordDecoder. decodeRecord(ByteBuf in)Decodes a DNS record into its object representation.protected voidTcpDnsQueryEncoder. encode(ChannelHandlerContext ctx, DnsQuery msg, ByteBuf out)protected voidDefaultDnsRecordEncoder. encodeName(java.lang.String name, ByteBuf buf)voidDefaultDnsRecordEncoder. encodeQuestion(DnsQuestion question, ByteBuf out)voidDnsRecordEncoder. encodeQuestion(DnsQuestion question, ByteBuf out)Encodes aDnsQuestion.voidDefaultDnsRecordEncoder. encodeRecord(DnsRecord record, ByteBuf out)voidDnsRecordEncoder. encodeRecord(DnsRecord record, ByteBuf out)Encodes aDnsRecord.protected ByteBufTcpDnsResponseDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)DnsRawRecordDefaultDnsRawRecord. replace(ByteBuf content)DnsRawRecordDnsRawRecord. replace(ByteBuf content)Constructors in io.netty.handler.codec.dns with parameters of type ByteBuf Constructor Description DefaultDnsRawRecord(java.lang.String name, DnsRecordType type, int dnsClass, long timeToLive, ByteBuf content)Creates a new record.DefaultDnsRawRecord(java.lang.String name, DnsRecordType type, long timeToLive, ByteBuf content)Creates a newIN-classrecord. -
Uses of ByteBuf in io.netty.handler.codec.haproxy
Methods in io.netty.handler.codec.haproxy with parameters of type ByteBuf Modifier and Type Method Description protected voidHAProxyMessageDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)static ProtocolDetectionResult<HAProxyProtocolVersion>HAProxyMessageDecoder. detectProtocol(ByteBuf buffer)Returns theProtocolDetectionResultfor the givenByteBuf.protected voidHAProxyMessageEncoder. encode(ChannelHandlerContext ctx, HAProxyMessage msg, ByteBuf out)HAProxyTLVHAProxyTLV. replace(ByteBuf content)Constructors in io.netty.handler.codec.haproxy with parameters of type ByteBuf Constructor Description HAProxyTLV(byte typeByteValue, ByteBuf content)Creates a new HAProxyTLVHAProxyTLV(HAProxyTLV.Type type, ByteBuf content)Creates a new HAProxyTLV -
Uses of ByteBuf in io.netty.handler.codec.http
Methods in io.netty.handler.codec.http that return ByteBuf Modifier and Type Method Description ByteBufDefaultFullHttpRequest. content()ByteBufDefaultFullHttpResponse. content()ByteBufDefaultHttpContent. content()Methods in io.netty.handler.codec.http with parameters of type ByteBuf Modifier and Type Method Description protected FullHttpMessageHttpObjectAggregator. beginAggregation(HttpMessage start, ByteBuf content)protected FullHttpMessageHttpServerUpgradeHandler. beginAggregation(HttpMessage start, ByteBuf content)protected voidHttpObjectDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer, java.util.List<java.lang.Object> out)protected voidHttpObjectDecoder. decodeLast(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)static voidHttpHeaders. encodeAscii(java.lang.CharSequence seq, ByteBuf buf)Deprecated.protected static voidHttpObjectEncoder. encodeAscii(java.lang.String s, ByteBuf buf)Deprecated.protected voidHttpObjectEncoder. encodeHeaders(HttpHeaders headers, ByteBuf buf)Encode theHttpHeadersinto aByteBuf.protected abstract voidHttpObjectEncoder. encodeInitialLine(ByteBuf buf, H message)protected voidHttpRequestEncoder. encodeInitialLine(ByteBuf buf, HttpRequest request)protected voidHttpResponseEncoder. encodeInitialLine(ByteBuf buf, HttpResponse response)FullHttpRequestDefaultFullHttpRequest. replace(ByteBuf content)FullHttpResponseDefaultFullHttpResponse. replace(ByteBuf content)HttpContentDefaultHttpContent. replace(ByteBuf content)LastHttpContentDefaultLastHttpContent. replace(ByteBuf content)FullHttpMessageFullHttpMessage. replace(ByteBuf content)FullHttpRequestFullHttpRequest. replace(ByteBuf content)FullHttpResponseFullHttpResponse. replace(ByteBuf content)HttpContentHttpContent. replace(ByteBuf content)LastHttpContentLastHttpContent. replace(ByteBuf content)Constructors in io.netty.handler.codec.http with parameters of type ByteBuf Constructor Description DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content)Create a full HTTP response with the given HTTP version, method, URI, and contents.DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content, boolean validateHeaders)Deprecated.Use theDefaultFullHttpRequest(HttpVersion, HttpMethod, String, ByteBuf, HttpHeadersFactory, HttpHeadersFactory)constructor instead.DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory)Create a full HTTP response with the given HTTP version, method, URI, contents, and factories for creating headers and trailers.DefaultFullHttpRequest(HttpVersion httpVersion, HttpMethod method, java.lang.String uri, ByteBuf content, HttpHeaders headers, HttpHeaders trailingHeader)Create a full HTTP response with the given HTTP version, method, URI, contents, and header and trailer objects.DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content)Create an HTTP response with the given HTTP version, status, and contents.DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, boolean validateHeaders)Deprecated.Prefer theDefaultFullHttpResponse(HttpVersion, HttpResponseStatus, ByteBuf, HttpHeadersFactory, HttpHeadersFactory)constructor instead.DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, boolean validateHeaders, boolean singleFieldHeaders)Deprecated.Prefer theDefaultFullHttpResponse(HttpVersion, HttpResponseStatus, ByteBuf, HttpHeadersFactory, HttpHeadersFactory)constructor instead.DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, HttpHeadersFactory headersFactory, HttpHeadersFactory trailersFactory)Create an HTTP response with the given HTTP version, status, contents, and with headers and trailers created by the given header factories.DefaultFullHttpResponse(HttpVersion version, HttpResponseStatus status, ByteBuf content, HttpHeaders headers, HttpHeaders trailingHeaders)Create an HTTP response with the given HTTP version, status, contents, headers and trailers.DefaultHttpContent(ByteBuf content)Creates a new instance with the specified chunk content.DefaultLastHttpContent(ByteBuf content)Create a new last HTTP content message with the given contents.DefaultLastHttpContent(ByteBuf content, boolean validateHeaders)Deprecated.Prefer theDefaultLastHttpContent(ByteBuf)constructor instead, to always have header validation enabled.DefaultLastHttpContent(ByteBuf content, HttpHeaders trailingHeaders)Create a new last HTTP content message with the given contents, and trailing headers.DefaultLastHttpContent(ByteBuf content, HttpHeadersFactory trailersFactory)Create a new last HTTP content message with the given contents, and trailing headers from the given factory.Constructor parameters in io.netty.handler.codec.http with type arguments of type ByteBuf Constructor Description HttpChunkedInput(ChunkedInput<ByteBuf> input)Creates a new instance using the specified input.HttpChunkedInput(ChunkedInput<ByteBuf> input, LastHttpContent lastHttpContent)Creates a new instance using the specified input. -
Uses of ByteBuf in io.netty.handler.codec.http.multipart
Methods in io.netty.handler.codec.http.multipart that return ByteBuf Modifier and Type Method Description ByteBufAbstractHttpData. content()ByteBufAbstractDiskHttpData. getByteBuf()ByteBufAbstractMemoryHttpData. getByteBuf()Utility to go from a In Memory FileUpload to a Disk (or another implementation) FileUploadByteBufHttpData. getByteBuf()Returns the content of the file item as a ByteBuf.
Note: this method will allocate a lot of memory, if the data is currently stored on the file system.ByteBufAbstractDiskHttpData. getChunk(int length)ByteBufAbstractMemoryHttpData. getChunk(int length)ByteBufHttpData. getChunk(int length)Returns a ChannelBuffer for the content from the current position with at most length read bytes, increasing the current position of the Bytes read.Methods in io.netty.handler.codec.http.multipart with parameters of type ByteBuf Modifier and Type Method Description voidAbstractDiskHttpData. addContent(ByteBuf buffer, boolean last)voidAbstractMemoryHttpData. addContent(ByteBuf buffer, boolean last)voidDiskAttribute. addContent(ByteBuf buffer, boolean last)voidHttpData. addContent(ByteBuf buffer, boolean last)Add the content from the ChannelBuffervoidMemoryAttribute. addContent(ByteBuf buffer, boolean last)AttributeAttribute. replace(ByteBuf content)AttributeDiskAttribute. replace(ByteBuf content)FileUploadDiskFileUpload. replace(ByteBuf content)FileUploadFileUpload. replace(ByteBuf content)HttpDataHttpData. replace(ByteBuf content)AttributeMemoryAttribute. replace(ByteBuf content)FileUploadMemoryFileUpload. replace(ByteBuf content)AttributeMixedAttribute. replace(ByteBuf content)FileUploadMixedFileUpload. replace(ByteBuf content)voidAbstractDiskHttpData. setContent(ByteBuf buffer)voidAbstractMemoryHttpData. setContent(ByteBuf buffer)voidHttpData. setContent(ByteBuf buffer)Set the content from the ChannelBuffer (erase any previous data) -
Uses of ByteBuf in io.netty.handler.codec.http.websocketx
Methods in io.netty.handler.codec.http.websocketx with parameters of type ByteBuf Modifier and Type Method Description protected WebSocketFrameWebSocketFrameAggregator. beginAggregation(WebSocketFrame start, ByteBuf content)protected voidWebSocket08FrameDecoder. checkCloseFrameBody(ChannelHandlerContext ctx, ByteBuf buffer)protected voidWebSocket00FrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidWebSocket08FrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)BinaryWebSocketFrameBinaryWebSocketFrame. replace(ByteBuf content)CloseWebSocketFrameCloseWebSocketFrame. replace(ByteBuf content)ContinuationWebSocketFrameContinuationWebSocketFrame. replace(ByteBuf content)PingWebSocketFramePingWebSocketFrame. replace(ByteBuf content)PongWebSocketFramePongWebSocketFrame. replace(ByteBuf content)TextWebSocketFrameTextWebSocketFrame. replace(ByteBuf content)abstract WebSocketFrameWebSocketFrame. replace(ByteBuf content)Constructors in io.netty.handler.codec.http.websocketx with parameters of type ByteBuf Constructor Description BinaryWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new binary frame with the specified binary data and the final fragment flag.BinaryWebSocketFrame(ByteBuf binaryData)Creates a new binary frame with the specified binary data.CloseWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new close frameContinuationWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new continuation frame with the specified binary data.ContinuationWebSocketFrame(ByteBuf binaryData)Creates a new continuation frame with the specified binary data.PingWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new ping frame with the specified binary data.PingWebSocketFrame(ByteBuf binaryData)Creates a new ping frame with the specified binary data.PongWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new pong frame with the specified binary dataPongWebSocketFrame(ByteBuf binaryData)Creates a new pong frame with the specified binary data.TextWebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)Creates a new text frame with the specified binary data and the final fragment flag.TextWebSocketFrame(ByteBuf binaryData)Creates a new text frame with the specified binary data.WebSocketFrame(boolean finalFragment, int rsv, ByteBuf binaryData)WebSocketFrame(ByteBuf binaryData)Constructor parameters in io.netty.handler.codec.http.websocketx with type arguments of type ByteBuf Constructor Description WebSocketChunkedInput(ChunkedInput<ByteBuf> input)Creates a new instance using the specified input.WebSocketChunkedInput(ChunkedInput<ByteBuf> input, int rsv)Creates a new instance using the specified input. -
Uses of ByteBuf in io.netty.handler.codec.http2
Methods in io.netty.handler.codec.http2 that return ByteBuf Modifier and Type Method Description static ByteBufHttp2CodecUtil. connectionPrefaceBuf()Returns a buffer containing theHttp2CodecUtil.CONNECTION_PREFACE.ByteBufDefaultHttp2DataFrame. content()ByteBufHttp2DataFrame. content()Payload of DATA frame.ByteBufHttp2GoAwayFrame. content()Optional debugging information describing cause the GOAWAY.static ByteBufHttp2CodecUtil. toByteBuf(ChannelHandlerContext ctx, java.lang.Throwable cause)Creates a buffer containing the error message from the given exception.Methods in io.netty.handler.codec.http2 with parameters of type ByteBuf Modifier and Type Method Description protected voidCleartextHttp2ServerUpgradeHandler. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)Peek inbound message to determine current connection wants to start HTTP/2 by HTTP upgrade or prior knowledgeprotected voidHttp2ConnectionHandler. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)voidDecoratingHttp2ConnectionDecoder. decodeFrame(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)voidDefaultHttp2ConnectionDecoder. decodeFrame(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)voidHttp2ConnectionDecoder. decodeFrame(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)Called by theHttp2ConnectionHandlerto decode the next frame from the input buffer.Http2HeadersDefaultHttp2HeadersDecoder. decodeHeaders(int streamId, ByteBuf headerBlock)Http2HeadersHttp2HeadersDecoder. decodeHeaders(int streamId, ByteBuf headerBlock)Decodes the given headers block and returns the headers.voidDefaultHttp2HeadersEncoder. encodeHeaders(int streamId, Http2Headers headers, ByteBuf buffer)voidHttp2HeadersEncoder. encodeHeaders(int streamId, Http2Headers headers, ByteBuf buffer)Encodes the given headers and writes the output headers block to the given output buffer.ChannelFutureHttp2ConnectionHandler. goAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)ChannelFutureHttp2LifecycleManager. goAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)Prevents the peer from creating streams and close the connection iferrorCodeis notHttp2Error.NO_ERROR.voidDefaultHttp2Connection. goAwayReceived(int lastKnownStream, long errorCode, ByteBuf debugData)voidHttp2Connection. goAwayReceived(int lastKnownStream, long errorCode, ByteBuf message)Indicates that aGOAWAYwas received from the remote endpoint and sets the last known stream.booleanDefaultHttp2Connection. goAwaySent(int lastKnownStream, long errorCode, ByteBuf debugData)booleanHttp2Connection. goAwaySent(int lastKnownStream, long errorCode, ByteBuf message)Updates the local state of thisHttp2Connectionas a result of aGOAWAYto send to the remote endpoint.voidHttp2FrameLogger. logData(Http2FrameLogger.Direction direction, ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream)voidHttp2FrameLogger. logGoAway(Http2FrameLogger.Direction direction, ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2FrameLogger. logUnknownFrame(Http2FrameLogger.Direction direction, ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf data)protected Http2StreamFrameHttp2FrameCodec. newHttp2UnknownFrame(byte frameType, int streamId, Http2Flags flags, ByteBuf payload)Create a Http2UnknownFrame.intDelegatingDecompressorFrameListener. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)intHttp2EventAdapter. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)intHttp2FrameAdapter. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)intHttp2FrameListener. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)Handles an inboundDATAframe.intHttp2FrameListenerDecorator. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)intInboundHttp2ToHttpAdapter. onDataRead(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream)voidHttp2EventAdapter. onGoAwayRead(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2FrameAdapter. onGoAwayRead(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2FrameListener. onGoAwayRead(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData)Handles an inboundGO_AWAYframe.voidHttp2FrameListenerDecorator. onGoAwayRead(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2Connection.Listener. onGoAwayReceived(int lastStreamId, long errorCode, ByteBuf debugData)Called when aGOAWAYwas received from the remote endpoint.voidHttp2ConnectionAdapter. onGoAwayReceived(int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2EventAdapter. onGoAwayReceived(int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2Connection.Listener. onGoAwaySent(int lastStreamId, long errorCode, ByteBuf debugData)Called when aGOAWAYframe was sent for the connection.voidHttp2ConnectionAdapter. onGoAwaySent(int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2EventAdapter. onGoAwaySent(int lastStreamId, long errorCode, ByteBuf debugData)voidHttp2EventAdapter. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)voidHttp2FrameAdapter. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)voidHttp2FrameListener. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)Handler for a frame not defined by the HTTP/2 spec.voidHttp2FrameListenerDecorator. onUnknownFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload)voidDefaultHttp2FrameReader. readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener)voidHttp2FrameReader. readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener)Attempts to read the next frame from the input buffer.voidHttp2InboundFrameLogger. readFrame(ChannelHandlerContext ctx, ByteBuf input, Http2FrameListener listener)static intHttp2CodecUtil. readUnsignedInt(ByteBuf buf)Reads a big-endian (31-bit) integer from the buffer.voidDefaultHttp2LocalFlowController. receiveFlowControlledFrame(Http2Stream stream, ByteBuf data, int padding, boolean endOfStream)voidHttp2LocalFlowController. receiveFlowControlledFrame(Http2Stream stream, ByteBuf data, int padding, boolean endOfStream)Receives an inboundDATAframe from the remote endpoint and applies flow control policies to it for both thestreamas well as the connection.DefaultHttp2DataFrameDefaultHttp2DataFrame. replace(ByteBuf content)Http2GoAwayFrameDefaultHttp2GoAwayFrame. replace(ByteBuf content)DefaultHttp2UnknownFrameDefaultHttp2UnknownFrame. replace(ByteBuf content)Http2DataFrameHttp2DataFrame. replace(ByteBuf content)Http2GoAwayFrameHttp2GoAwayFrame. replace(ByteBuf content)Http2UnknownFrameHttp2UnknownFrame. replace(ByteBuf content)static FullHttpRequestHttpConversionUtil. toFullHttpRequest(int streamId, Http2Headers http2Headers, ByteBuf content, boolean validateHttpHeaders)Create a new object to contain the request datastatic FullHttpResponseHttpConversionUtil. toFullHttpResponse(int streamId, Http2Headers http2Headers, ByteBuf content, boolean validateHttpHeaders)Create a new object to contain the response dataChannelFutureCompressorHttp2ConnectionEncoder. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream, ChannelPromise promise)ChannelFutureDecoratingHttp2FrameWriter. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)ChannelFutureDefaultHttp2ConnectionEncoder. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream, ChannelPromise promise)ChannelFutureDefaultHttp2FrameWriter. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)ChannelFutureHttp2DataWriter. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)Writes aDATAframe to the remote endpoint.ChannelFutureHttp2OutboundFrameLogger. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endStream, ChannelPromise promise)ChannelFutureStreamBufferingEncoder. writeData(ChannelHandlerContext ctx, int streamId, ByteBuf data, int padding, boolean endOfStream, ChannelPromise promise)ChannelFutureDecoratingHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureDefaultHttp2ConnectionEncoder. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureDefaultHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)ChannelFutureHttp2ConnectionEncoder. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)Writes the given data to the internalHttp2FrameWriterwithout performing any state checks on the connection/stream.ChannelFutureHttp2FrameWriter. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)Generic write method for any HTTP/2 frame.ChannelFutureHttp2OutboundFrameLogger. writeFrame(ChannelHandlerContext ctx, byte frameType, int streamId, Http2Flags flags, ByteBuf payload, ChannelPromise promise)static voidHttp2CodecUtil. writeFrameHeader(ByteBuf out, int payloadLength, byte type, Http2Flags flags, int streamId)Writes an HTTP/2 frame header to the output buffer.ChannelFutureDecoratingHttp2FrameWriter. writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)ChannelFutureDefaultHttp2ConnectionEncoder. writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)ChannelFutureDefaultHttp2FrameWriter. writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)ChannelFutureHttp2FrameWriter. writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)Writes a GO_AWAY frame to the remote endpoint.ChannelFutureHttp2OutboundFrameLogger. writeGoAway(ChannelHandlerContext ctx, int lastStreamId, long errorCode, ByteBuf debugData, ChannelPromise promise)Constructors in io.netty.handler.codec.http2 with parameters of type ByteBuf Constructor Description DefaultHttp2DataFrame(ByteBuf content)Equivalent tonew DefaultHttp2DataFrame(content, false).DefaultHttp2DataFrame(ByteBuf content, boolean endStream)Equivalent tonew DefaultHttp2DataFrame(content, endStream, 0).DefaultHttp2DataFrame(ByteBuf content, boolean endStream, int padding)Construct a new data message.DefaultHttp2GoAwayFrame(long errorCode, ByteBuf content)Construct a new GOAWAY message.DefaultHttp2GoAwayFrame(Http2Error error, ByteBuf content)DefaultHttp2UnknownFrame(byte frameType, Http2Flags flags, ByteBuf data)Constructor parameters in io.netty.handler.codec.http2 with type arguments of type ByteBuf Constructor Description Http2DataChunkedInput(ChunkedInput<ByteBuf> input, Http2FrameStream stream)Creates a new instance using the specified input. -
Uses of ByteBuf in io.netty.handler.codec.http3
Methods in io.netty.handler.codec.http3 with parameters of type ByteBuf Modifier and Type Method Description Http3DataFrameDefaultHttp3DataFrame. replace(ByteBuf content)Http3UnknownFrameDefaultHttp3UnknownFrame. replace(ByteBuf content)Http3DataFrameHttp3DataFrame. replace(ByteBuf content)Http3UnknownFrameHttp3UnknownFrame. replace(ByteBuf content)Constructors in io.netty.handler.codec.http3 with parameters of type ByteBuf Constructor Description DefaultHttp3DataFrame(ByteBuf data)DefaultHttp3UnknownFrame(long type, ByteBuf payload) -
Uses of ByteBuf in io.netty.handler.codec.json
Methods in io.netty.handler.codec.json that return ByteBuf Modifier and Type Method Description protected ByteBufJsonObjectDecoder. extractObject(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Override this method if you want to filter the json objects/arrays that get passed through the pipeline.Methods in io.netty.handler.codec.json with parameters of type ByteBuf Modifier and Type Method Description protected voidJsonObjectDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected ByteBufJsonObjectDecoder. extractObject(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Override this method if you want to filter the json objects/arrays that get passed through the pipeline. -
Uses of ByteBuf in io.netty.handler.codec.marshalling
Methods in io.netty.handler.codec.marshalling that return ByteBuf Modifier and Type Method Description protected ByteBufMarshallingDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length)Methods in io.netty.handler.codec.marshalling with parameters of type ByteBuf Modifier and Type Method Description protected voidCompatibleMarshallingDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer, java.util.List<java.lang.Object> out)protected java.lang.ObjectMarshallingDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)protected voidCompatibleMarshallingDecoder. decodeLast(ChannelHandlerContext ctx, ByteBuf buffer, java.util.List<java.lang.Object> out)protected voidCompatibleMarshallingEncoder. encode(ChannelHandlerContext ctx, java.lang.Object msg, ByteBuf out)protected voidMarshallingEncoder. encode(ChannelHandlerContext ctx, java.lang.Object msg, ByteBuf out)protected ByteBufMarshallingDecoder. extractFrame(ChannelHandlerContext ctx, ByteBuf buffer, int index, int length) -
Uses of ByteBuf in io.netty.handler.codec.memcache
Methods in io.netty.handler.codec.memcache that return ByteBuf Modifier and Type Method Description ByteBufDefaultMemcacheContent. content()protected abstract ByteBufAbstractMemcacheObjectEncoder. encodeMessage(ChannelHandlerContext ctx, M msg)Take the givenMemcacheMessageand encode it into a writableByteBuf.Methods in io.netty.handler.codec.memcache with parameters of type ByteBuf Modifier and Type Method Description LastMemcacheContentDefaultLastMemcacheContent. replace(ByteBuf content)MemcacheContentDefaultMemcacheContent. replace(ByteBuf content)FullMemcacheMessageFullMemcacheMessage. replace(ByteBuf content)LastMemcacheContentLastMemcacheContent. replace(ByteBuf content)MemcacheContentMemcacheContent. replace(ByteBuf content)Constructors in io.netty.handler.codec.memcache with parameters of type ByteBuf Constructor Description DefaultLastMemcacheContent(ByteBuf content)DefaultMemcacheContent(ByteBuf content)Creates a new instance with the specified content. -
Uses of ByteBuf in io.netty.handler.codec.memcache.binary
Methods in io.netty.handler.codec.memcache.binary that return ByteBuf Modifier and Type Method Description ByteBufDefaultFullBinaryMemcacheRequest. content()ByteBufDefaultFullBinaryMemcacheResponse. content()protected ByteBufAbstractBinaryMemcacheEncoder. encodeMessage(ChannelHandlerContext ctx, M msg)ByteBufAbstractBinaryMemcacheMessage. extras()ByteBufBinaryMemcacheMessage. extras()Returns aByteBufrepresentation of the optional extras.ByteBufAbstractBinaryMemcacheMessage. key()ByteBufBinaryMemcacheMessage. key()Returns the optional key of the document.Methods in io.netty.handler.codec.memcache.binary with parameters of type ByteBuf Modifier and Type Method Description protected FullMemcacheMessageBinaryMemcacheObjectAggregator. beginAggregation(BinaryMemcacheMessage start, ByteBuf content)protected voidAbstractBinaryMemcacheDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected abstract MAbstractBinaryMemcacheDecoder. decodeHeader(ByteBuf in)Decode and return the parsedBinaryMemcacheMessage.protected BinaryMemcacheRequestBinaryMemcacheRequestDecoder. decodeHeader(ByteBuf in)protected BinaryMemcacheResponseBinaryMemcacheResponseDecoder. decodeHeader(ByteBuf in)protected abstract voidAbstractBinaryMemcacheEncoder. encodeHeader(ByteBuf buf, M msg)Encode the header.protected voidBinaryMemcacheRequestEncoder. encodeHeader(ByteBuf buf, BinaryMemcacheRequest msg)protected voidBinaryMemcacheResponseEncoder. encodeHeader(ByteBuf buf, BinaryMemcacheResponse msg)FullBinaryMemcacheRequestDefaultFullBinaryMemcacheRequest. replace(ByteBuf content)FullBinaryMemcacheResponseDefaultFullBinaryMemcacheResponse. replace(ByteBuf content)FullBinaryMemcacheRequestFullBinaryMemcacheRequest. replace(ByteBuf content)FullBinaryMemcacheResponseFullBinaryMemcacheResponse. replace(ByteBuf content)BinaryMemcacheMessageAbstractBinaryMemcacheMessage. setExtras(ByteBuf extras)BinaryMemcacheMessageBinaryMemcacheMessage. setExtras(ByteBuf extras)Sets the extras buffer on the message.BinaryMemcacheMessageAbstractBinaryMemcacheMessage. setKey(ByteBuf key)BinaryMemcacheMessageBinaryMemcacheMessage. setKey(ByteBuf key)Sets the key of the document. -
Uses of ByteBuf in io.netty.handler.codec.mqtt
Methods in io.netty.handler.codec.mqtt that return ByteBuf Modifier and Type Method Description ByteBufMqttPublishMessage. content()ByteBufMqttPublishMessage. payload()Methods in io.netty.handler.codec.mqtt with parameters of type ByteBuf Modifier and Type Method Description protected voidMqttDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer, java.util.List<java.lang.Object> out)MqttMessageBuilders.PublishBuilderMqttMessageBuilders.PublishBuilder. payload(ByteBuf payload)MqttPublishMessageMqttPublishMessage. replace(ByteBuf content)Constructors in io.netty.handler.codec.mqtt with parameters of type ByteBuf Constructor Description MqttPublishMessage(MqttFixedHeader mqttFixedHeader, MqttPublishVariableHeader variableHeader, ByteBuf payload) -
Uses of ByteBuf in io.netty.handler.codec.protobuf
Methods in io.netty.handler.codec.protobuf with parameters of type ByteBuf Modifier and Type Method Description protected voidProtobufDecoder. decode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out)protected voidProtobufDecoderNano. decode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out)protected voidProtobufVarint32FrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidProtobufVarint32LengthFieldPrepender. encode(ChannelHandlerContext ctx, ByteBuf msg, ByteBuf out) -
Uses of ByteBuf in io.netty.handler.codec.quic
Methods in io.netty.handler.codec.quic with parameters of type ByteBuf Modifier and Type Method Description default ChannelFutureQuicChannel. close(boolean applicationClose, int error, ByteBuf reason)Close theQuicChannelChannelFutureQuicChannel. close(boolean applicationClose, int error, ByteBuf reason, ChannelPromise promise)Close theQuicChannelprotected intQuicCodecDispatcher. decodeIndex(ByteBuf connectionId)Return the idx that was encoded into the connectionId via theQuicConnectionIdGeneratorbefore, or-1if decoding was not successful.DatagramPacketSegmentedDatagramPacketAllocator. newPacket(ByteBuf buffer, int segmentSize, java.net.InetSocketAddress remoteAddress)Return a new segmentedDatagramPacket.voidQuicHeaderParser. parse(java.net.InetSocketAddress sender, java.net.InetSocketAddress recipient, ByteBuf packet, QuicHeaderParser.QuicHeaderProcessor callback)Parses a QUIC packet and extract the header values out of it.voidQuicHeaderParser.QuicHeaderProcessor. process(java.net.InetSocketAddress sender, java.net.InetSocketAddress recipient, ByteBuf packet, QuicPacketType type, long version, ByteBuf scid, ByteBuf dcid, ByteBuf token)Called when a QUIC packet header was parsed.QuicStreamFrameDefaultQuicStreamFrame. replace(ByteBuf content)QuicStreamFrameQuicStreamFrame. replace(ByteBuf content)intInsecureQuicTokenHandler. validateToken(ByteBuf token, java.net.InetSocketAddress address)intQuicTokenHandler. validateToken(ByteBuf token, java.net.InetSocketAddress address)Validate the token and return the offset,-1is returned if the token is not valid.booleanInsecureQuicTokenHandler. writeToken(ByteBuf out, ByteBuf dcid, java.net.InetSocketAddress address)booleanQuicTokenHandler. writeToken(ByteBuf out, ByteBuf dcid, java.net.InetSocketAddress address)Generate a new token for the given destination connection id and address.Constructors in io.netty.handler.codec.quic with parameters of type ByteBuf Constructor Description DefaultQuicStreamFrame(ByteBuf data, boolean fin) -
Uses of ByteBuf in io.netty.handler.codec.redis
Methods in io.netty.handler.codec.redis with parameters of type ByteBuf Modifier and Type Method Description protected FullBulkStringRedisMessageRedisBulkStringAggregator. beginAggregation(BulkStringHeaderRedisMessage start, ByteBuf content)protected voidRedisDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)ErrorRedisMessageFixedRedisMessagePool. getError(ByteBuf content)ErrorRedisMessageRedisMessagePool. getError(ByteBuf content)ReturnsErrorRedisMessagefor givencontent.IntegerRedisMessageFixedRedisMessagePool. getInteger(ByteBuf content)IntegerRedisMessageRedisMessagePool. getInteger(ByteBuf content)ReturnsIntegerRedisMessagefor givencontent.SimpleStringRedisMessageFixedRedisMessagePool. getSimpleString(ByteBuf content)SimpleStringRedisMessageRedisMessagePool. getSimpleString(ByteBuf content)ReturnsSimpleStringRedisMessagefor givencontent.static RedisMessageTypeRedisMessageType. readFrom(ByteBuf in, boolean decodeInlineCommands)DetermineRedisMessageTypebased on the type prefixbyteread from given the buffer.BulkStringRedisContentBulkStringRedisContent. replace(ByteBuf content)BulkStringRedisContentDefaultBulkStringRedisContent. replace(ByteBuf content)LastBulkStringRedisContentDefaultLastBulkStringRedisContent. replace(ByteBuf content)FullBulkStringRedisMessageFullBulkStringRedisMessage. replace(ByteBuf content)LastBulkStringRedisContentLastBulkStringRedisContent. replace(ByteBuf content)voidRedisMessageType. writeTo(ByteBuf out)Write the message type's prefix to the given buffer.Constructors in io.netty.handler.codec.redis with parameters of type ByteBuf Constructor Description DefaultBulkStringRedisContent(ByteBuf content)Creates aDefaultBulkStringRedisContentfor the givencontent.DefaultLastBulkStringRedisContent(ByteBuf content)Creates aDefaultLastBulkStringRedisContentfor the givencontent.FullBulkStringRedisMessage(ByteBuf content)Creates aFullBulkStringRedisMessagefor the givencontent. -
Uses of ByteBuf in io.netty.handler.codec.rtsp
Methods in io.netty.handler.codec.rtsp with parameters of type ByteBuf Modifier and Type Method Description protected voidRtspEncoder. encodeInitialLine(ByteBuf buf, HttpMessage message) -
Uses of ByteBuf in io.netty.handler.codec.sctp
Methods in io.netty.handler.codec.sctp with parameters of type ByteBuf Modifier and Type Method Description protected voidSctpOutboundByteStreamHandler. encode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.codec.serialization
Methods in io.netty.handler.codec.serialization with parameters of type ByteBuf Modifier and Type Method Description protected java.lang.ObjectObjectDecoder. decode(ChannelHandlerContext ctx, ByteBuf in)Deprecated.protected voidCompatibleObjectEncoder. encode(ChannelHandlerContext ctx, java.io.Serializable msg, ByteBuf out)Deprecated.protected voidObjectEncoder. encode(ChannelHandlerContext ctx, java.io.Serializable msg, ByteBuf out)Deprecated. -
Uses of ByteBuf in io.netty.handler.codec.smtp
Methods in io.netty.handler.codec.smtp with parameters of type ByteBuf Modifier and Type Method Description protected SmtpResponseSmtpResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf buffer)LastSmtpContentDefaultLastSmtpContent. replace(ByteBuf content)SmtpContentDefaultSmtpContent. replace(ByteBuf content)LastSmtpContentLastSmtpContent. replace(ByteBuf content)SmtpContentSmtpContent. replace(ByteBuf content)Constructors in io.netty.handler.codec.smtp with parameters of type ByteBuf Constructor Description DefaultLastSmtpContent(ByteBuf data)Creates a new instance using the given data.DefaultSmtpContent(ByteBuf data)Creates a new instance using the given data. -
Uses of ByteBuf in io.netty.handler.codec.socks
Methods in io.netty.handler.codec.socks with parameters of type ByteBuf Modifier and Type Method Description protected voidSocksAuthRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksAuthResponseDecoder. decode(ChannelHandlerContext channelHandlerContext, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksCmdRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksCmdResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksInitRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksInitResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf byteBuf, java.util.List<java.lang.Object> out)protected voidSocksMessageEncoder. encode(ChannelHandlerContext ctx, SocksMessage msg, ByteBuf out)voidSocksAuthRequest. encodeAsByteBuf(ByteBuf byteBuf)voidSocksAuthResponse. encodeAsByteBuf(ByteBuf byteBuf)voidSocksCmdRequest. encodeAsByteBuf(ByteBuf byteBuf)voidSocksCmdResponse. encodeAsByteBuf(ByteBuf byteBuf)voidSocksInitRequest. encodeAsByteBuf(ByteBuf byteBuf)voidSocksInitResponse. encodeAsByteBuf(ByteBuf byteBuf)abstract voidSocksMessage. encodeAsByteBuf(ByteBuf byteBuf)Deprecated.Do not use; this method was intended for an internal use only.voidUnknownSocksRequest. encodeAsByteBuf(ByteBuf byteBuf)voidUnknownSocksResponse. encodeAsByteBuf(ByteBuf byteBuf) -
Uses of ByteBuf in io.netty.handler.codec.socksx
Methods in io.netty.handler.codec.socksx with parameters of type ByteBuf Modifier and Type Method Description protected voidSocksPortUnificationServerHandler. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.codec.socksx.v4
Methods in io.netty.handler.codec.socksx.v4 with parameters of type ByteBuf Modifier and Type Method Description protected voidSocks4ClientDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks4ServerDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks4ClientEncoder. encode(ChannelHandlerContext ctx, Socks4CommandRequest msg, ByteBuf out)protected voidSocks4ServerEncoder. encode(ChannelHandlerContext ctx, Socks4CommandResponse msg, ByteBuf out) -
Uses of ByteBuf in io.netty.handler.codec.socksx.v5
Methods in io.netty.handler.codec.socksx.v5 with parameters of type ByteBuf Modifier and Type Method Description protected voidSocks5CommandRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5CommandResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5InitialRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5InitialResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5PasswordAuthRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5PasswordAuthResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5PrivateAuthRequestDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSocks5PrivateAuthResponseDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)java.lang.StringSocks5AddressDecoder. decodeAddress(Socks5AddressType addrType, ByteBuf in)Decodes a SOCKS5 address field into its string representation.protected voidSocks5ClientEncoder. encode(ChannelHandlerContext ctx, Socks5Message msg, ByteBuf out)protected voidSocks5ServerEncoder. encode(ChannelHandlerContext ctx, Socks5Message msg, ByteBuf out)voidSocks5AddressEncoder. encodeAddress(Socks5AddressType addrType, java.lang.String addrValue, ByteBuf out)Encodes a SOCKS5 address. -
Uses of ByteBuf in io.netty.handler.codec.spdy
Methods in io.netty.handler.codec.spdy that return ByteBuf Modifier and Type Method Description ByteBufDefaultSpdyDataFrame. content()ByteBufSpdyDataFrame. content()Returns the data payload of this frame.ByteBufSpdyHeaderBlockRawEncoder. encode(ByteBufAllocator alloc, SpdyHeadersFrame frame)ByteBufSpdyFrameEncoder. encodeDataFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf data)ByteBufSpdyFrameEncoder. encodeGoAwayFrame(ByteBufAllocator allocator, int lastGoodStreamId, int statusCode)ByteBufSpdyFrameEncoder. encodeHeadersFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodePingFrame(ByteBufAllocator allocator, int id)ByteBufSpdyFrameEncoder. encodeRstStreamFrame(ByteBufAllocator allocator, int streamId, int statusCode)ByteBufSpdyFrameEncoder. encodeSettingsFrame(ByteBufAllocator allocator, SpdySettingsFrame spdySettingsFrame)ByteBufSpdyFrameEncoder. encodeSynReplyFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodeSynStreamFrame(ByteBufAllocator allocator, int streamId, int associatedToStreamId, byte priority, boolean last, boolean unidirectional, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodeUnknownFrame(ByteBufAllocator allocator, int frameType, byte flags, ByteBuf data)ByteBufSpdyFrameEncoder. encodeWindowUpdateFrame(ByteBufAllocator allocator, int streamId, int deltaWindowSize)Methods in io.netty.handler.codec.spdy with parameters of type ByteBuf Modifier and Type Method Description protected voidSpdyFrameCodec. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)voidSpdyFrameDecoder. decode(ByteBuf buffer)protected voidSpdyHeaderBlockRawDecoder. decodeHeaderBlock(ByteBuf headerBlock, SpdyHeadersFrame frame)protected booleanSpdyFrameDecoder. decodeUnknownFrame(int frameType, byte flags, int length, ByteBuf buffer)Decode the unknown frame, returns true if parsed something, otherwise false.ByteBufSpdyFrameEncoder. encodeDataFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf data)ByteBufSpdyFrameEncoder. encodeHeadersFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodeSynReplyFrame(ByteBufAllocator allocator, int streamId, boolean last, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodeSynStreamFrame(ByteBufAllocator allocator, int streamId, int associatedToStreamId, byte priority, boolean last, boolean unidirectional, ByteBuf headerBlock)ByteBufSpdyFrameEncoder. encodeUnknownFrame(ByteBufAllocator allocator, int frameType, byte flags, ByteBuf data)protected SpdyFrameSpdyFrameCodec. newSpdyUnknownFrame(int frameType, byte flags, ByteBuf payload)Create a SpdyUnknownFrame.voidSpdyFrameCodec. readDataFrame(int streamId, boolean last, ByteBuf data)voidSpdyFrameDecoderDelegate. readDataFrame(int streamId, boolean last, ByteBuf data)Called when a DATA frame is received.voidSpdyFrameCodec. readHeaderBlock(ByteBuf headerBlock)voidSpdyFrameDecoderDelegate. readHeaderBlock(ByteBuf headerBlock)Called when the header block within a SYN_STREAM, SYN_REPLY, or HEADERS frame is received.voidSpdyFrameCodec. readUnknownFrame(int frameType, byte flags, ByteBuf payload)default voidSpdyFrameDecoderDelegate. readUnknownFrame(int frameType, byte flags, ByteBuf payload)Called when an unknown frame is received.SpdyDataFrameDefaultSpdyDataFrame. replace(ByteBuf content)DefaultSpdyUnknownFrameDefaultSpdyUnknownFrame. replace(ByteBuf content)SpdyDataFrameSpdyDataFrame. replace(ByteBuf content)SpdyUnknownFrameSpdyUnknownFrame. replace(ByteBuf content)protected voidSpdyFrameEncoder. writeControlFrameHeader(ByteBuf buffer, int type, byte flags, int length)Constructors in io.netty.handler.codec.spdy with parameters of type ByteBuf Constructor Description DefaultSpdyDataFrame(int streamId, ByteBuf data)Creates a new instance.DefaultSpdyUnknownFrame(int frameType, byte flags, ByteBuf data) -
Uses of ByteBuf in io.netty.handler.codec.stomp
Methods in io.netty.handler.codec.stomp that return ByteBuf Modifier and Type Method Description ByteBufDefaultStompFrame. content()Methods in io.netty.handler.codec.stomp with parameters of type ByteBuf Modifier and Type Method Description protected StompFrameStompSubframeAggregator. beginAggregation(StompHeadersSubframe start, ByteBuf content)protected java.lang.ObjectStompSubframeEncoder. convertContentSubFrame(StompContentSubframe original, ByteBuf encoded)An extension method to convert a STOMP encoded buffer to a different message type based on an originalStompHeadersSubframecontent sub frame.protected java.lang.ObjectStompSubframeEncoder. convertFullFrame(StompFrame original, ByteBuf encoded)An extension method to convert a STOMP encoded buffer to a different message type based on an originalStompFramefull frame.protected java.lang.ObjectStompSubframeEncoder. convertHeadersSubFrame(StompHeadersSubframe original, ByteBuf encoded)An extension method to convert a STOMP encoded buffer to a different message type based on an originalStompHeadersSubframeheaders sub frame.protected voidStompSubframeDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)LastStompContentSubframeDefaultLastStompContentSubframe. replace(ByteBuf content)StompContentSubframeDefaultStompContentSubframe. replace(ByteBuf content)StompFrameDefaultStompFrame. replace(ByteBuf content)LastStompContentSubframeLastStompContentSubframe. replace(ByteBuf content)StompContentSubframeStompContentSubframe. replace(ByteBuf content)StompFrameStompFrame. replace(ByteBuf content)Constructors in io.netty.handler.codec.stomp with parameters of type ByteBuf Constructor Description DefaultLastStompContentSubframe(ByteBuf content)DefaultStompContentSubframe(ByteBuf content)DefaultStompFrame(StompCommand command, ByteBuf content) -
Uses of ByteBuf in io.netty.handler.codec.string
Methods in io.netty.handler.codec.string with parameters of type ByteBuf Modifier and Type Method Description protected voidStringDecoder. decode(ChannelHandlerContext ctx, ByteBuf msg, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.codec.xml
Methods in io.netty.handler.codec.xml with parameters of type ByteBuf Modifier and Type Method Description protected voidXmlDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidXmlFrameDecoder. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out) -
Uses of ByteBuf in io.netty.handler.ssl
Methods in io.netty.handler.ssl that return ByteBuf Modifier and Type Method Description ByteBufPemPrivateKey. content()ByteBufPemX509Certificate. content()Methods in io.netty.handler.ssl with parameters of type ByteBuf Modifier and Type Method Description protected voidOptionalSslHandler. decode(ChannelHandlerContext context, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSslClientHelloHandler. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)protected voidSslHandler. decode(ChannelHandlerContext ctx, ByteBuf in, java.util.List<java.lang.Object> out)static booleanSslHandler. isEncrypted(ByteBuf buffer)Deprecated.static booleanSslHandler. isEncrypted(ByteBuf buffer, boolean probeSSLv2)Returnstrueif the givenByteBufis encrypted.protected Future<T>AbstractSniHandler. lookup(ChannelHandlerContext ctx, ByteBuf clientHello)protected abstract Future<T>SslClientHelloHandler. lookup(ChannelHandlerContext ctx, ByteBuf clientHello)Kicks off a lookup for the givenClientHelloand returns aFuturewhich in turn will notify theSslClientHelloHandler.onLookupComplete(ChannelHandlerContext, Future)on completion.PemPrivateKeyPemPrivateKey. replace(ByteBuf content)PemX509CertificatePemX509Certificate. replace(ByteBuf content)static PemPrivateKeyPemPrivateKey. valueOf(ByteBuf key)Creates aPemPrivateKeyfrom rawByteBuf.static PemX509CertificatePemX509Certificate. valueOf(ByteBuf key)Creates aPemX509Certificatefrom rawByteBuf. -
Uses of ByteBuf in io.netty.handler.stream
Methods in io.netty.handler.stream that return ByteBuf Modifier and Type Method Description ByteBufChunkedFile. readChunk(ByteBufAllocator allocator)ByteBufChunkedFile. readChunk(ChannelHandlerContext ctx)Deprecated.ByteBufChunkedNioFile. readChunk(ByteBufAllocator allocator)ByteBufChunkedNioFile. readChunk(ChannelHandlerContext ctx)Deprecated.ByteBufChunkedNioStream. readChunk(ByteBufAllocator allocator)ByteBufChunkedNioStream. readChunk(ChannelHandlerContext ctx)Deprecated.ByteBufChunkedStream. readChunk(ByteBufAllocator allocator)ByteBufChunkedStream. readChunk(ChannelHandlerContext ctx)Deprecated.
-