1. Netty Source: Detecting New Connectionshistorical

    How readiness on a listening channel leads the event loop to accept new sockets.

  2. Netty Source: Creating an Accepted NioSocketChannelhistorical

    Wrapping an accepted socket as a child Channel with pipeline/configuration and parent relationship.

  3. 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.

  4. Netty Source: Registering Read Interesthistorical

    How an active socket channel becomes interested in read readiness and feeds inbound pipeline events.