Home / Function/ selected() — netty Function Reference

selected() — netty Function Reference

Architecture documentation for the selected() function in JdkBaseApplicationProtocolNegotiator.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  9720cc02_6597_a35d_cf1a_7cbadf40c262["selected()"]
  0f27490d_af85_1f60_588b_efec2c3631a6["NoFailProtocolSelectionListener"]
  9720cc02_6597_a35d_cf1a_7cbadf40c262 -->|defined in| 0f27490d_af85_1f60_588b_efec2c3631a6
  aae4eab4_30e4_2197_e252_8d6edb12010a["noSelectedMatchFound()"]
  9720cc02_6597_a35d_cf1a_7cbadf40c262 -->|calls| aae4eab4_30e4_2197_e252_8d6edb12010a
  style 9720cc02_6597_a35d_cf1a_7cbadf40c262 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/JdkBaseApplicationProtocolNegotiator.java lines 185–192

        @Override
        public void selected(String protocol) throws Exception {
            if (supportedProtocols.contains(protocol)) {
                engineWrapper.setNegotiatedApplicationProtocol(protocol);
            } else {
                noSelectedMatchFound(protocol);
            }
        }

Domain

Subdomains

Frequently Asked Questions

What does selected() do?
selected() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/JdkBaseApplicationProtocolNegotiator.java.
Where is selected() defined?
selected() is defined in handler/src/main/java/io/netty/handler/ssl/JdkBaseApplicationProtocolNegotiator.java at line 185.
What does selected() call?
selected() calls 1 function(s): noSelectedMatchFound.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free