executeNotifyClosePromise() — netty Function Reference
Architecture documentation for the executeNotifyClosePromise() function in SslHandler.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1["executeNotifyClosePromise()"] d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1["SslHandler"] 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1 -->|defined in| d8b07a7c_44f8_c4e9_efe8_49bfae7d4af1 51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7["unwrap()"] 51b61e7d_0f6d_53c7_ed6a_56a55b2ed5a7 -->|calls| 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1 b9490323_35d0_98b8_338b_728f1490d032["notifyClosePromise()"] 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1 -->|calls| b9490323_35d0_98b8_338b_728f1490d032 f0428da0_54a3_9dcb_eefb_1da6c347f719["run()"] 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1 -->|calls| f0428da0_54a3_9dcb_eefb_1da6c347f719 style 98e8f4ff_7549_ed31_b81e_c5e0677d1ae1 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
handler/src/main/java/io/netty/handler/ssl/SslHandler.java lines 1638–1649
private void executeNotifyClosePromise(final ChannelHandlerContext ctx) {
try {
ctx.executor().execute(new Runnable() {
@Override
public void run() {
notifyClosePromise(null);
}
});
} catch (RejectedExecutionException e) {
notifyClosePromise(e);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does executeNotifyClosePromise() do?
executeNotifyClosePromise() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java.
Where is executeNotifyClosePromise() defined?
executeNotifyClosePromise() is defined in handler/src/main/java/io/netty/handler/ssl/SslHandler.java at line 1638.
What does executeNotifyClosePromise() call?
executeNotifyClosePromise() calls 2 function(s): notifyClosePromise, run.
What calls executeNotifyClosePromise()?
executeNotifyClosePromise() is called by 1 function(s): unwrap.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free