putValue() — netty Function Reference
Architecture documentation for the putValue() function in ExtendedOpenSslSession.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD b5db3478_f74f_2062_f9ee_fdc909a85c00["putValue()"] 835034fc_685f_5f00_94f5_614858a55cc9["ExtendedOpenSslSession"] b5db3478_f74f_2062_f9ee_fdc909a85c00 -->|defined in| 835034fc_685f_5f00_94f5_614858a55cc9 b9ff24de_c0ab_e125_b0cb_e2a2d81501ce["SSLSessionBindingListenerDecorator()"] b5db3478_f74f_2062_f9ee_fdc909a85c00 -->|calls| b9ff24de_c0ab_e125_b0cb_e2a2d81501ce style b5db3478_f74f_2062_f9ee_fdc909a85c00 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/ExtendedOpenSslSession.java lines 140–147
@Override
public final void putValue(String name, Object value) {
if (value instanceof SSLSessionBindingListener) {
// Decorate the value if needed so we submit the correct SSLSession instance
value = new SSLSessionBindingListenerDecorator((SSLSessionBindingListener) value);
}
wrapped.putValue(name, value);
}
Domain
Subdomains
Source
Frequently Asked Questions
What does putValue() do?
putValue() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/ExtendedOpenSslSession.java.
Where is putValue() defined?
putValue() is defined in handler/src/main/java/io/netty/handler/ssl/ExtendedOpenSslSession.java at line 140.
What does putValue() call?
putValue() calls 1 function(s): SSLSessionBindingListenerDecorator.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free