4.新连接的接入
Java · 4 notes
- Netty Source: Detecting New Connectionshistorical
How readiness on a listening channel leads the event loop to accept new sockets.
- Netty Source: Creating an Accepted NioSocketChannelhistorical
Wrapping an accepted socket as a child Channel with pipeline/configuration and parent relationship.
- Netty Source: Assigning an Accepted Channel to an EventLoophistorical
Selecting a worker event loop and registering the accepted child channel for thread-confined I/O processing.
- Netty Source: Registering Read Interesthistorical
How an active socket channel becomes interested in read readiness and feeds inbound pipeline events.