Uses of Interface
io.netty.channel.ChannelId
-
Packages that use ChannelId Package Description io.netty.channel The core channel API which is asynchronous and event-driven abstraction of various transports such as a NIO Channel.io.netty.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.netty.channel.group A channel registry which helps a user maintain the list of openChannel
s and perform bulk operations on them.io.netty.handler.codec.http2 Handlers for sending and receiving HTTP/2 frames. -
-
Uses of ChannelId in io.netty.channel
Classes in io.netty.channel that implement ChannelId Modifier and Type Class Description class
DefaultChannelId
The defaultChannelId
implementation.Fields in io.netty.channel declared as ChannelId Modifier and Type Field Description private ChannelId
AbstractChannel. id
Methods in io.netty.channel that return ChannelId Modifier and Type Method Description ChannelId
AbstractChannel. id()
ChannelId
Channel. id()
Returns the globally unique identifier of thisChannel
.protected ChannelId
AbstractChannel. newId()
Returns a newDefaultChannelId
instance.Methods in io.netty.channel with parameters of type ChannelId Modifier and Type Method Description int
DefaultChannelId. compareTo(ChannelId o)
Constructors in io.netty.channel with parameters of type ChannelId Constructor Description AbstractChannel(Channel parent, ChannelId id)
Creates a new instance. -
Uses of ChannelId in io.netty.channel.embedded
Classes in io.netty.channel.embedded that implement ChannelId Modifier and Type Class Description (package private) class
EmbeddedChannelId
A dummyChannelId
implementation.Fields in io.netty.channel.embedded declared as ChannelId Modifier and Type Field Description (package private) static ChannelId
EmbeddedChannelId. INSTANCE
Methods in io.netty.channel.embedded with parameters of type ChannelId Modifier and Type Method Description int
EmbeddedChannelId. compareTo(ChannelId o)
Constructors in io.netty.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, ChannelConfig config, 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.netty.channel.group
Fields in io.netty.channel.group with type parameters of type ChannelId Modifier and Type Field Description private java.util.concurrent.ConcurrentMap<ChannelId,Channel>
DefaultChannelGroup. nonServerChannels
private java.util.concurrent.ConcurrentMap<ChannelId,Channel>
DefaultChannelGroup. serverChannels
Methods in io.netty.channel.group with parameters of type ChannelId Modifier and Type Method Description Channel
ChannelGroup. find(ChannelId id)
Channel
DefaultChannelGroup. find(ChannelId id)
-
Uses of ChannelId in io.netty.handler.codec.http2
Classes in io.netty.handler.codec.http2 that implement ChannelId Modifier and Type Class Description (package private) class
Http2StreamChannelId
ChannelId implementation which is used by ourHttp2StreamChannel
implementation.Fields in io.netty.handler.codec.http2 declared as ChannelId Modifier and Type Field Description private ChannelId
AbstractHttp2StreamChannel. channelId
private ChannelId
Http2StreamChannelId. parentId
Methods in io.netty.handler.codec.http2 that return ChannelId Modifier and Type Method Description ChannelId
AbstractHttp2StreamChannel. id()
Methods in io.netty.handler.codec.http2 with parameters of type ChannelId Modifier and Type Method Description int
Http2StreamChannelId. compareTo(ChannelId o)
Constructors in io.netty.handler.codec.http2 with parameters of type ChannelId Constructor Description Http2StreamChannelId(ChannelId parentId, int id)
-