Uses of Class
io.netty.util.Signal
-
Packages that use Signal Package Description 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.util Utility classes used across multiple packages. -
-
Uses of Signal in io.netty.handler.codec
Fields in io.netty.handler.codec declared as Signal Modifier and Type Field Description protected static Signal
DecoderResult. SIGNAL_SUCCESS
protected static Signal
DecoderResult. SIGNAL_UNFINISHED
-
Uses of Signal in io.netty.util
Methods in io.netty.util that return Signal Modifier and Type Method Description static Signal
Signal. valueOf(java.lang.Class<?> firstNameComponent, java.lang.String secondNameComponent)
static Signal
Signal. valueOf(java.lang.String name)
Returns theSignal
of the specified name.Methods in io.netty.util with parameters of type Signal Modifier and Type Method Description int
Signal. compareTo(Signal other)
void
Signal. expect(Signal signal)
Check if the givenSignal
is the same as this instance.
-