Skip to the content.

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

    @Override
    public final Set<SelectionKey> keys() {
        ensureOpen();
        return publicKeys;
    }

    @Override
    public final Set<SelectionKey> selectedKeys() {
        ensureOpen();
        return publicSelectedKeys;
    }