default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.bind(ChannelHandlerContext ctx,
SocketAddress localAddress) |
Called once a bind operation is made.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.bind(ChannelHandlerContext ctx,
SocketAddress localAddress) |
|
default void |
ChannelHandler.channelActive(ChannelHandlerContext ctx) |
|
void |
CombinedChannelDuplexHandler.channelActive(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.channelExceptionCaught(ChannelHandlerContext ctx,
Throwable cause) |
Gets called if a Throwable was thrown when handling inbound events.
|
void |
ChannelInitializer.channelExceptionCaught(ChannelHandlerContext ctx,
Throwable cause) |
|
void |
CombinedChannelDuplexHandler.channelExceptionCaught(ChannelHandlerContext ctx,
Throwable cause) |
|
default void |
ChannelHandler.channelInactive(ChannelHandlerContext ctx) |
|
void |
CombinedChannelDuplexHandler.channelInactive(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.channelInboundEvent(ChannelHandlerContext ctx,
Object evt) |
Gets called if a custom inbound event happened.
|
void |
CombinedChannelDuplexHandler.channelInboundEvent(ChannelHandlerContext ctx,
Object evt) |
|
void |
SimpleUserEventChannelHandler.channelInboundEvent(ChannelHandlerContext ctx,
Object evt) |
|
default void |
ChannelHandler.channelRead(ChannelHandlerContext ctx,
Object msg) |
Invoked when the current Channel has read a message from the peer.
|
void |
CombinedChannelDuplexHandler.channelRead(ChannelHandlerContext ctx,
Object msg) |
|
void |
SimpleChannelInboundHandler.channelRead(ChannelHandlerContext ctx,
Object msg) |
|
default void |
ChannelHandler.channelReadComplete(ChannelHandlerContext ctx) |
|
void |
CombinedChannelDuplexHandler.channelReadComplete(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.channelRegistered(ChannelHandlerContext ctx) |
|
void |
CombinedChannelDuplexHandler.channelRegistered(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.channelShutdown(ChannelHandlerContext ctx,
ChannelShutdownDirection direction) |
|
void |
CombinedChannelDuplexHandler.channelShutdown(ChannelHandlerContext ctx,
ChannelShutdownDirection direction) |
|
default void |
ChannelHandler.channelUnregistered(ChannelHandlerContext ctx) |
|
void |
CombinedChannelDuplexHandler.channelUnregistered(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.channelWritabilityChanged(ChannelHandlerContext ctx) |
Gets called once the writable state of a Channel changed.
|
void |
CombinedChannelDuplexHandler.channelWritabilityChanged(ChannelHandlerContext ctx) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.close(ChannelHandlerContext ctx) |
Called once a close operation is made.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.close(ChannelHandlerContext ctx) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress) |
Called once a connect operation is made.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.connect(ChannelHandlerContext ctx,
SocketAddress remoteAddress,
SocketAddress localAddress) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.deregister(ChannelHandlerContext ctx) |
Called once a deregister operation is made from the current registered EventLoop.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.deregister(ChannelHandlerContext ctx) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.disconnect(ChannelHandlerContext ctx) |
Called once a disconnect operation is made.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.disconnect(ChannelHandlerContext ctx) |
|
protected abstract void |
SimpleUserEventChannelHandler.eventReceived(ChannelHandlerContext ctx,
I evt) |
|
default void |
ChannelHandler.flush(ChannelHandlerContext ctx) |
Called once a flush operation is made.
|
void |
CombinedChannelDuplexHandler.flush(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.handlerAdded(ChannelHandlerContext ctx) |
Gets called after the ChannelHandler was added to the actual context and it's ready to handle events.
|
void |
ChannelInitializer.handlerAdded(ChannelHandlerContext ctx) |
Gets called after the ChannelHandler was added to the actual context and it's ready to handle events.
|
void |
CombinedChannelDuplexHandler.handlerAdded(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.handlerRemoved(ChannelHandlerContext ctx) |
Gets called after the ChannelHandler was removed from the actual context and it doesn't handle events
anymore.
|
void |
CombinedChannelDuplexHandler.handlerRemoved(ChannelHandlerContext ctx) |
|
protected abstract void |
SimpleChannelInboundHandler.messageReceived(ChannelHandlerContext ctx,
I msg) |
|
protected void |
DefaultChannelPipeline.onUnhandledInboundMessage(ChannelHandlerContext ctx,
Object msg) |
|
default long |
ChannelHandler.pendingOutboundBytes(ChannelHandlerContext ctx) |
The number of the outbound bytes that are buffered / queued in this ChannelHandler.
|
long |
CombinedChannelDuplexHandler.pendingOutboundBytes(ChannelHandlerContext ctx) |
|
default void |
ChannelHandler.read(ChannelHandlerContext ctx,
ReadBufferAllocator readBufferAllocator) |
Called once a read operation is made from the current registered EventLoop.
|
void |
CombinedChannelDuplexHandler.read(ChannelHandlerContext ctx,
ReadBufferAllocator readBufferAllocator) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.register(ChannelHandlerContext ctx) |
Called once a register operation is made to register for IO on the EventLoop.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.register(ChannelHandlerContext ctx) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.sendOutboundEvent(ChannelHandlerContext ctx,
Object event) |
Called once a custom defined outbound event was sent.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.sendOutboundEvent(ChannelHandlerContext ctx,
Object event) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.shutdown(ChannelHandlerContext ctx,
ChannelShutdownDirection direction) |
Called once a shutdown operation was requested and should be executed.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.shutdown(ChannelHandlerContext ctx,
ChannelShutdownDirection direction) |
|
default io.netty5.util.concurrent.Future<Void> |
ChannelHandler.write(ChannelHandlerContext ctx,
Object msg) |
Called once a write operation is made.
|
io.netty5.util.concurrent.Future<Void> |
CombinedChannelDuplexHandler.write(ChannelHandlerContext ctx,
Object msg) |
|
void |
AbstractCoalescingBufferQueue.writeAndRemoveAll(ChannelHandlerContext ctx) |
Writes all remaining elements in this queue.
|