Interface SelectorManager.AcceptListener

  • All Superinterfaces:
    EventListener
    Enclosing class:
    SelectorManager

    public static interface SelectorManager.AcceptListener
    extends EventListener

    A listener for accept events.

    This listener is called from either the selector or acceptor thread and implementations must be non blocking and fast.

    • Method Detail

      • onAccepting

        default void onAccepting​(SelectableChannel channel)
        Called immediately after a new SelectableChannel is accepted, but before it has been submitted to the SelectorManager.
        Parameters:
        channel - the accepted channel
      • onAccepted

        default void onAccepted​(SelectableChannel channel)
        Called after the accepted channel has been allocated an EndPoint and associated Connection, and after the onOpen notifications have been called on both endPoint and connection.
        Parameters:
        channel - the accepted channel