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 ByteProcessorByteBufUtil.FIND_NON_ASCIIAborts on a byte which is not a valid ASCII character.Methods in io.netty.buffer with parameters of type ByteProcessorModifier and TypeMethodDescriptionintAbstractByteBuf.forEachByte(int index, int length, ByteProcessor processor) intAbstractByteBuf.forEachByte(ByteProcessor processor) intAbstractUnpooledSlicedByteBuf.forEachByte(int index, int length, ByteProcessor processor) intAdaptivePoolingAllocator.AdaptiveByteBuf.forEachByte(int index, int length, ByteProcessor processor) intAdvancedLeakAwareByteBuf.forEachByte(int index, int length, ByteProcessor processor) intAdvancedLeakAwareByteBuf.forEachByte(ByteProcessor processor) intAdvancedLeakAwareCompositeByteBuf.forEachByte(int index, int length, ByteProcessor processor) intAdvancedLeakAwareCompositeByteBuf.forEachByte(ByteProcessor processor) abstract intByteBuf.forEachByte(int index, int length, ByteProcessor processor) Iterates over the specified area of this buffer with the specifiedprocessorin ascending order.abstract intByteBuf.forEachByte(ByteProcessor processor) Iterates over the readable bytes of this buffer with the specifiedprocessorin ascending order.intDuplicatedByteBuf.forEachByte(int index, int length, ByteProcessor processor) Deprecated.intEmptyByteBuf.forEachByte(int index, int length, ByteProcessor processor) intEmptyByteBuf.forEachByte(ByteProcessor processor) intPooledDuplicatedByteBuf.forEachByte(int index, int length, ByteProcessor processor) intPooledSlicedByteBuf.forEachByte(int index, int length, ByteProcessor processor) intReadOnlyByteBuf.forEachByte(int index, int length, ByteProcessor processor) Deprecated.intSwappedByteBuf.forEachByte(int index, int length, ByteProcessor processor) Deprecated.intSwappedByteBuf.forEachByte(ByteProcessor processor) Deprecated.intWrappedByteBuf.forEachByte(int index, int length, ByteProcessor processor) intWrappedByteBuf.forEachByte(ByteProcessor processor) intWrappedCompositeByteBuf.forEachByte(int index, int length, ByteProcessor processor) intWrappedCompositeByteBuf.forEachByte(ByteProcessor processor) (package private) intAbstractByteBuf.forEachByteAsc0(int start, int end, ByteProcessor processor) protected intCompositeByteBuf.forEachByteAsc0(int start, int end, ByteProcessor processor) protected intWrappedCompositeByteBuf.forEachByteAsc0(int start, int end, ByteProcessor processor) intAbstractByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intAbstractByteBuf.forEachByteDesc(ByteProcessor processor) intAbstractUnpooledSlicedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intAdaptivePoolingAllocator.AdaptiveByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intAdvancedLeakAwareByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intAdvancedLeakAwareByteBuf.forEachByteDesc(ByteProcessor processor) intAdvancedLeakAwareCompositeByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intAdvancedLeakAwareCompositeByteBuf.forEachByteDesc(ByteProcessor processor) abstract intByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) Iterates over the specified area of this buffer with the specifiedprocessorin descending order.abstract intByteBuf.forEachByteDesc(ByteProcessor processor) Iterates over the readable bytes of this buffer with the specifiedprocessorin descending order.intDuplicatedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) Deprecated.intEmptyByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intEmptyByteBuf.forEachByteDesc(ByteProcessor processor) intPooledDuplicatedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intPooledSlicedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intReadOnlyByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) Deprecated.intSwappedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) Deprecated.intSwappedByteBuf.forEachByteDesc(ByteProcessor processor) Deprecated.intWrappedByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intWrappedByteBuf.forEachByteDesc(ByteProcessor processor) intWrappedCompositeByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intWrappedCompositeByteBuf.forEachByteDesc(ByteProcessor processor) (package private) intAbstractByteBuf.forEachByteDesc0(int rStart, int rEnd, ByteProcessor processor) protected intCompositeByteBuf.forEachByteDesc0(int rStart, int rEnd, ByteProcessor processor) protected intWrappedCompositeByteBuf.forEachByteDesc0(int rStart, int rEnd, ByteProcessor processor) -
Uses of ByteProcessor in io.netty.buffer.search
Subinterfaces of ByteProcessor in io.netty.buffer.searchModifier and TypeInterfaceDescriptioninterfaceInterface forSearchProcessorthat implements simultaneous search for multiple strings.interfaceInterface forByteProcessorthat implements string search.Classes in io.netty.buffer.search that implement ByteProcessorModifier and TypeClassDescriptionstatic classstatic classstatic class -
Uses of ByteProcessor in io.netty.handler.codec
Methods in io.netty.handler.codec with parameters of type ByteProcessorModifier and TypeMethodDescriptionintReplayingDecoderByteBuf.forEachByte(int index, int length, ByteProcessor processor) intReplayingDecoderByteBuf.forEachByte(ByteProcessor processor) intReplayingDecoderByteBuf.forEachByteDesc(int index, int length, ByteProcessor processor) intReplayingDecoderByteBuf.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 ByteProcessorByteBufChecksum.updateProcessorprivate final ByteProcessorBzip2BlockCompressor.writeProcessor -
Uses of ByteProcessor in io.netty.handler.codec.http
Classes in io.netty.handler.codec.http that implement ByteProcessorModifier and TypeClassDescription(package private) final classValidates the chunk start line.Fields in io.netty.handler.codec.http declared as ByteProcessorModifier and TypeFieldDescriptionprivate static final ByteProcessorHttpObjectDecoder.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 classprivate 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 classChecks 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 classprivate final classprivate final classFields in io.netty.handler.codec.http2 declared as ByteProcessorModifier and TypeFieldDescriptionprivate static final ByteProcessorDefaultHttp2Headers.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 classprivate static class -
Uses of ByteProcessor in io.netty.util
Classes in io.netty.util that implement ByteProcessorModifier and TypeClassDescriptionstatic classAByteProcessorwhich finds the first appearance which is not of a specific byte.static classAByteProcessorwhich finds the first appearance of a specific byte.Fields in io.netty.util declared as ByteProcessorModifier and TypeFieldDescriptionstatic final ByteProcessorByteProcessor.FIND_ASCII_SPACEAborts on a ascii space character (' ').static final ByteProcessorByteProcessor.FIND_COMMAAborts on a comma(',').static final ByteProcessorByteProcessor.FIND_CRAborts on aCR ('\r').static final ByteProcessorByteProcessor.FIND_CRLFAborts on aCR ('\r')or aLF ('\n').static final ByteProcessorByteProcessor.FIND_LFAborts on aLF ('\n').static final ByteProcessorByteProcessor.FIND_LINEAR_WHITESPACEAborts on a linear whitespace (a (' 'or a'\t').static final ByteProcessorByteProcessor.FIND_NON_CRAborts on a non-CR ('\r').static final ByteProcessorByteProcessor.FIND_NON_CRLFAborts on a byte which is neither aCR ('\r')nor aLF ('\n').static final ByteProcessorByteProcessor.FIND_NON_LFAborts on a non-LF ('\n').static final ByteProcessorByteProcessor.FIND_NON_LINEAR_WHITESPACEAborts on a byte which is not a linear whitespace (neither' 'nor'\t').static final ByteProcessorByteProcessor.FIND_NON_NULAborts on a non-NUL (0x00).static final ByteProcessorByteProcessor.FIND_NULAborts on aNUL (0x00).static final ByteProcessorByteProcessor.FIND_SEMI_COLONAborts on a semicolon(';').Methods in io.netty.util with parameters of type ByteProcessorModifier and TypeMethodDescriptionintAsciiString.forEachByte(int index, int length, ByteProcessor visitor) Iterates over the specified area of this buffer with the specifiedprocessorin ascending order.intAsciiString.forEachByte(ByteProcessor visitor) Iterates over the readable bytes of this buffer with the specifiedprocessorin ascending order.private intAsciiString.forEachByte0(int index, int length, ByteProcessor visitor) intAsciiString.forEachByteDesc(int index, int length, ByteProcessor visitor) Iterates over the specified area of this buffer with the specifiedprocessorin descending order.intAsciiString.forEachByteDesc(ByteProcessor visitor) Iterates over the readable bytes of this buffer with the specifiedprocessorin descending order.private intAsciiString.forEachByteDesc0(int index, int length, ByteProcessor visitor)
ByteProcessor.