Skip to the content.

Home / cs-notes / Architecture / Components / Netty / Java / SelectorImpl / implRegister

    /**
     * Register the key in the selector.
     *
     * The default implementation checks if the selector is open. It should
     * be overridden by selector implementations as needed.
     */
    protected void implRegister(SelectionKeyImpl ski) {
        ensureOpen();
    }