putValue() — netty Function Reference
Architecture documentation for the putValue() function in ReferenceCountedOpenSslEngine.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fa073e38_11a9_1ea0_9532_84681cc57c26["putValue()"] 70581b12_79ee_1937_703d_e9d4631c418e["DefaultOpenSslSession"] fa073e38_11a9_1ea0_9532_84681cc57c26 -->|defined in| 70581b12_79ee_1937_703d_e9d4631c418e 0dbce131_0600_cc39_0d80_82809e58c091["notifyUnbound()"] fa073e38_11a9_1ea0_9532_84681cc57c26 -->|calls| 0dbce131_0600_cc39_0d80_82809e58c091 style fa073e38_11a9_1ea0_9532_84681cc57c26 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java lines 2496–2507
@Override
public void putValue(String name, Object value) {
checkNotNull(name, "name");
checkNotNull(value, "value");
final Object old = keyValueStorage.put(name, value);
if (value instanceof SSLSessionBindingListener) {
// Use newSSLSessionBindingEvent so we always use the wrapper if needed.
((SSLSessionBindingListener) value).valueBound(newSSLSessionBindingEvent(name));
}
notifyUnbound(old, name);
}
Domain
Subdomains
Calls
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/ReferenceCountedOpenSslEngine.java.
Where is putValue() defined?
putValue() is defined in handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java at line 2496.
What does putValue() call?
putValue() calls 1 function(s): notifyUnbound.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free