Uses of Interface
io.netty.util.ByteProcessor
Packages that use ByteProcessor
Package
Description
Abstraction of a byte buffer - the fundamental data structure
to represent a low-level binary and text message.
Utility classes for performing efficient substring search within
ByteBuf
.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.
Encoder, decoder and their related message types for HTTP.
HTTP multipart support.
Encoder, decoder, handshakers and their related message types for
Web Socket data frames.
Handlers for sending and receiving HTTP/2 frames.
Encoder, decoder for Redis.
STOMP codec
Utility classes used across multiple packages.
-
Uses of ByteProcessor in io.netty.buffer
Subinterfaces of ByteProcessor in io.netty.bufferFields in io.netty.buffer declared as ByteProcessorModifier and TypeFieldDescriptionprivate static final ByteProcessor
ByteBufUtil.FIND_NON_ASCII
Aborts on a byte which is not a valid ASCII character.Methods in io.netty.buffer with parameters of type ByteProcessorModifier and TypeMethodDescriptionint
AbstractByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
AbstractByteBuf.forEachByte
(ByteProcessor processor) int
AbstractUnpooledSlicedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareByteBuf.forEachByte
(ByteProcessor processor) int
AdvancedLeakAwareCompositeByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareCompositeByteBuf.forEachByte
(ByteProcessor processor) abstract int
ByteBuf.forEachByte
(int index, int length, ByteProcessor processor) Iterates over the specified area of this buffer with the specifiedprocessor
in ascending order.abstract int
ByteBuf.forEachByte
(ByteProcessor processor) Iterates over the readable bytes of this buffer with the specifiedprocessor
in ascending order.int
DuplicatedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) Deprecated.int
EmptyByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
EmptyByteBuf.forEachByte
(ByteProcessor processor) int
PooledDuplicatedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
PooledSlicedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
ReadOnlyByteBuf.forEachByte
(int index, int length, ByteProcessor processor) Deprecated.int
SwappedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) Deprecated.int
SwappedByteBuf.forEachByte
(ByteProcessor processor) Deprecated.int
WrappedByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
WrappedByteBuf.forEachByte
(ByteProcessor processor) int
WrappedCompositeByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
WrappedCompositeByteBuf.forEachByte
(ByteProcessor processor) (package private) int
AbstractByteBuf.forEachByteAsc0
(int start, int end, ByteProcessor processor) protected int
CompositeByteBuf.forEachByteAsc0
(int start, int end, ByteProcessor processor) protected int
WrappedCompositeByteBuf.forEachByteAsc0
(int start, int end, ByteProcessor processor) int
AbstractByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
AbstractByteBuf.forEachByteDesc
(ByteProcessor processor) int
AbstractUnpooledSlicedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareByteBuf.forEachByteDesc
(ByteProcessor processor) int
AdvancedLeakAwareCompositeByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
AdvancedLeakAwareCompositeByteBuf.forEachByteDesc
(ByteProcessor processor) abstract int
ByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) Iterates over the specified area of this buffer with the specifiedprocessor
in descending order.abstract int
ByteBuf.forEachByteDesc
(ByteProcessor processor) Iterates over the readable bytes of this buffer with the specifiedprocessor
in descending order.int
DuplicatedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) Deprecated.int
EmptyByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
EmptyByteBuf.forEachByteDesc
(ByteProcessor processor) int
PooledDuplicatedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
PooledSlicedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
ReadOnlyByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) Deprecated.int
SwappedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) Deprecated.int
SwappedByteBuf.forEachByteDesc
(ByteProcessor processor) Deprecated.int
WrappedByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
WrappedByteBuf.forEachByteDesc
(ByteProcessor processor) int
WrappedCompositeByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
WrappedCompositeByteBuf.forEachByteDesc
(ByteProcessor processor) (package private) int
AbstractByteBuf.forEachByteDesc0
(int rStart, int rEnd, ByteProcessor processor) protected int
CompositeByteBuf.forEachByteDesc0
(int rStart, int rEnd, ByteProcessor processor) protected int
WrappedCompositeByteBuf.forEachByteDesc0
(int rStart, int rEnd, ByteProcessor processor) -
Uses of ByteProcessor in io.netty.buffer.search
Subinterfaces of ByteProcessor in io.netty.buffer.searchModifier and TypeInterfaceDescriptioninterface
Interface forSearchProcessor
that implements simultaneous search for multiple strings.interface
Interface forByteProcessor
that implements string search.Classes in io.netty.buffer.search that implement ByteProcessorModifier and TypeClassDescriptionstatic class
static class
static class
-
Uses of ByteProcessor in io.netty.handler.codec
Methods in io.netty.handler.codec with parameters of type ByteProcessorModifier and TypeMethodDescriptionint
ReplayingDecoderByteBuf.forEachByte
(int index, int length, ByteProcessor processor) int
ReplayingDecoderByteBuf.forEachByte
(ByteProcessor processor) int
ReplayingDecoderByteBuf.forEachByteDesc
(int index, int length, ByteProcessor processor) int
ReplayingDecoderByteBuf.forEachByteDesc
(ByteProcessor processor) -
Uses of ByteProcessor in io.netty.handler.codec.base64
Classes in io.netty.handler.codec.base64 that implement ByteProcessor -
Uses of ByteProcessor in io.netty.handler.codec.compression
Fields in io.netty.handler.codec.compression declared as ByteProcessorModifier and TypeFieldDescriptionprivate final ByteProcessor
ByteBufChecksum.updateProcessor
private final ByteProcessor
Bzip2BlockCompressor.writeProcessor
-
Uses of ByteProcessor in io.netty.handler.codec.http
Fields in io.netty.handler.codec.http declared as ByteProcessorModifier and TypeFieldDescriptionprivate static final ByteProcessor
HttpObjectDecoder.SKIP_CONTROL_CHARS_BYTES
-
Uses of ByteProcessor in io.netty.handler.codec.http.multipart
Classes in io.netty.handler.codec.http.multipart that implement ByteProcessorModifier and TypeClassDescriptionprivate static final class
private static final class
-
Uses of ByteProcessor in io.netty.handler.codec.http.websocketx
Classes in io.netty.handler.codec.http.websocketx that implement ByteProcessorModifier and TypeClassDescription(package private) final class
Checks UTF8 bytes for validity -
Uses of ByteProcessor in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement ByteProcessorModifier and TypeClassDescription(package private) final class
private final class
private final class
Fields in io.netty.handler.codec.http2 declared as ByteProcessorModifier and TypeFieldDescriptionprivate static final ByteProcessor
DefaultHttp2Headers.HTTP2_NAME_VALIDATOR_PROCESSOR
-
Uses of ByteProcessor in io.netty.handler.codec.redis
Classes in io.netty.handler.codec.redis that implement ByteProcessor -
Uses of ByteProcessor in io.netty.handler.codec.stomp
Classes in io.netty.handler.codec.stomp that implement ByteProcessorModifier and TypeClassDescriptionprivate static final class
private static class
-
Uses of ByteProcessor in io.netty.util
Classes in io.netty.util that implement ByteProcessorModifier and TypeClassDescriptionstatic class
AByteProcessor
which finds the first appearance which is not of a specific byte.static class
AByteProcessor
which finds the first appearance of a specific byte.Fields in io.netty.util declared as ByteProcessorModifier and TypeFieldDescriptionstatic final ByteProcessor
ByteProcessor.FIND_ASCII_SPACE
Aborts on a ascii space character (' '
).static final ByteProcessor
ByteProcessor.FIND_COMMA
Aborts on a comma(',')
.static final ByteProcessor
ByteProcessor.FIND_CR
Aborts on aCR ('\r')
.static final ByteProcessor
ByteProcessor.FIND_CRLF
Aborts on aCR ('\r')
or aLF ('\n')
.static final ByteProcessor
ByteProcessor.FIND_LF
Aborts on aLF ('\n')
.static final ByteProcessor
ByteProcessor.FIND_LINEAR_WHITESPACE
Aborts on a linear whitespace (a (' '
or a'\t'
).static final ByteProcessor
ByteProcessor.FIND_NON_CR
Aborts on a non-CR ('\r')
.static final ByteProcessor
ByteProcessor.FIND_NON_CRLF
Aborts on a byte which is neither aCR ('\r')
nor aLF ('\n')
.static final ByteProcessor
ByteProcessor.FIND_NON_LF
Aborts on a non-LF ('\n')
.static final ByteProcessor
ByteProcessor.FIND_NON_LINEAR_WHITESPACE
Aborts on a byte which is not a linear whitespace (neither' '
nor'\t'
).static final ByteProcessor
ByteProcessor.FIND_NON_NUL
Aborts on a non-NUL (0x00)
.static final ByteProcessor
ByteProcessor.FIND_NUL
Aborts on aNUL (0x00)
.static final ByteProcessor
ByteProcessor.FIND_SEMI_COLON
Aborts on a semicolon(';')
.Methods in io.netty.util with parameters of type ByteProcessorModifier and TypeMethodDescriptionint
AsciiString.forEachByte
(int index, int length, ByteProcessor visitor) Iterates over the specified area of this buffer with the specifiedprocessor
in ascending order.int
AsciiString.forEachByte
(ByteProcessor visitor) Iterates over the readable bytes of this buffer with the specifiedprocessor
in ascending order.private int
AsciiString.forEachByte0
(int index, int length, ByteProcessor visitor) int
AsciiString.forEachByteDesc
(int index, int length, ByteProcessor visitor) Iterates over the specified area of this buffer with the specifiedprocessor
in descending order.int
AsciiString.forEachByteDesc
(ByteProcessor visitor) Iterates over the readable bytes of this buffer with the specifiedprocessor
in descending order.private int
AsciiString.forEachByteDesc0
(int index, int length, ByteProcessor visitor)
ByteProcessor
.