getHandshakeApplicationProtocolSelector() — netty Function Reference
Architecture documentation for the getHandshakeApplicationProtocolSelector() function in JdkAlpnSslUtils.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 48b35cda_c6ea_55f2_3f62_b220320b886e["getHandshakeApplicationProtocolSelector()"] 9ce2ca62_8327_82fd_ae99_528b2f7562c1["JdkAlpnSslUtils"] 48b35cda_c6ea_55f2_3f62_b220320b886e -->|defined in| 9ce2ca62_8327_82fd_ae99_528b2f7562c1 style 48b35cda_c6ea_55f2_3f62_b220320b886e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/JdkAlpnSslUtils.java lines 167–177
@SuppressWarnings("unchecked")
static BiFunction<SSLEngine, List<String>, String> getHandshakeApplicationProtocolSelector(SSLEngine engine) {
try {
return (BiFunction<SSLEngine, List<String>, String>)
GET_HANDSHAKE_APPLICATION_PROTOCOL_SELECTOR.invoke(engine);
} catch (UnsupportedOperationException ex) {
throw ex;
} catch (Exception ex) {
throw new IllegalStateException(ex);
}
}
Domain
Subdomains
Source
Frequently Asked Questions
What does getHandshakeApplicationProtocolSelector() do?
getHandshakeApplicationProtocolSelector() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/JdkAlpnSslUtils.java.
Where is getHandshakeApplicationProtocolSelector() defined?
getHandshakeApplicationProtocolSelector() is defined in handler/src/main/java/io/netty/handler/ssl/JdkAlpnSslUtils.java at line 167.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free