Uses of Interface
io.netty5.channel.ChannelId
-
Packages that use ChannelId Package Description io.netty5.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty5.channel.embedded A virtualChannel
that helps wrapping a series of handlers to unit test the handlers or use them in non-I/O context.io.netty5.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them. -
-
Uses of ChannelId in io.netty5.channel
Classes in io.netty5.channel that implement ChannelId Modifier and Type Class Description class
DefaultChannelId
The defaultChannelId
implementation.Methods in io.netty5.channel that return ChannelId Modifier and Type Method Description ChannelId
AbstractChannel. id()
ChannelId
Channel. id()
Returns the globally unique identifier of thisChannel
.Methods in io.netty5.channel with parameters of type ChannelId Modifier and Type Method Description int
DefaultChannelId. compareTo(ChannelId o)
Constructors in io.netty5.channel with parameters of type ChannelId Constructor Description AbstractChannel(P parent, EventLoop eventLoop, ChannelMetadata metadata, RecvBufferAllocator defaultRecvBufferAllocator, ChannelId id)
Creates a new instance. -
Uses of ChannelId in io.netty5.channel.embedded
Constructors in io.netty5.channel.embedded with parameters of type ChannelId Constructor Description EmbeddedChannel(ChannelId channelId)
Create a new instance with the specified ID and an empty pipeline.EmbeddedChannel(ChannelId channelId, boolean register, boolean hasDisconnect, ChannelHandler... handlers)
Create a new instance with the channel ID set to the given ID and the pipeline initialized with the specified handlers.EmbeddedChannel(ChannelId channelId, boolean hasDisconnect, ChannelHandler... handlers)
Create a new instance with the channel ID set to the given ID and the pipeline initialized with the specified handlers.EmbeddedChannel(ChannelId channelId, ChannelHandler... handlers)
Create a new instance with the channel ID set to the given ID and the pipeline initialized with the specified handlers.EmbeddedChannel(Channel parent, ChannelId channelId, boolean register, boolean hasDisconnect, ChannelHandler... handlers)
Create a new instance with the channel ID set to the given ID and the pipeline initialized with the specified handlers. -
Uses of ChannelId in io.netty5.channel.group
Methods in io.netty5.channel.group with parameters of type ChannelId Modifier and Type Method Description Channel
ChannelGroup. find(ChannelId id)
Channel
DefaultChannelGroup. find(ChannelId id)
-