3.绑定端口
Java · 7 notes
- Netty Bind Source Summaryhistorical
End-to-end server bind flow: create, initialize, register, bind, activate, and complete the ChannelFuture.
- Netty Bind Source: Instantiating the Channelhistorical
Historical source flow from configured channel factory to a server Channel instance before registration.
- Netty Bind Source: Binding the Listening Sockethistorical
How an event-loop-owned server channel performs the transport bind and transitions toward active listening state.
- Netty Bind Source: Initializing the Channelhistorical
Applying options, attributes, and pipeline handlers to a newly created server channel.
- Netty Source: NioEventLoop Run Loophistorical
Selector waiting, selected-key processing, queued tasks, scheduling, and fairness inside a Netty NIO event loop.
- Netty Bind Source: Registering the Channelhistorical
Assigning a Channel to an EventLoop, registering with selector/transport state, and firing registration events.
- Netty Channel Type Hierarchyhistorical
Conceptual Channel hierarchy across transport-independent API, abstract channel support, and concrete NIO/native transports.