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