Uses of Interface
io.netty5.buffer.ComponentIterator.Next
-
Packages that use ComponentIterator.Next Package Description io.netty5.buffer Abstraction of a byte buffer - the fundamental data structure to represent a low-level binary and text message. -
-
Uses of ComponentIterator.Next in io.netty5.buffer
Classes in io.netty5.buffer with type parameters of type ComponentIterator.Next Modifier and Type Interface Description interface
ComponentIterator<T extends ComponentIterator.Next & BufferComponent>
A facade for iterating the readable or writable components of aBuffer
.Methods in io.netty5.buffer with type parameters of type ComponentIterator.Next Modifier and Type Method Description <T extends BufferComponent & ComponentIterator.Next>
ComponentIterator<T>Buffer. forEachComponent()
Create a component iterator for all components in this buffer.<T extends BufferComponent & ComponentIterator.Next>
ComponentIterator<T>BufferStub. forEachComponent()
<N extends ComponentIterator.Next & BufferComponent>
NComponentIterator.Next. next()
Get the next component of the iteration, ornull
if there are no more components.default <N extends ComponentIterator.Next & BufferComponent>
NComponentIterator.Next. nextReadable()
Get the next component of the iteration that has any bytes to read, ornull
if there are no components with any readable bytes.default <N extends ComponentIterator.Next & BufferComponent>
NComponentIterator.Next. nextWritable()
Get the next component of the iteration that has any space for writing bytes, ornull
if there are no components with any spare capacity.
-