Home / Function/ fireSniCompletionEvent() — netty Function Reference

fireSniCompletionEvent() — netty Function Reference

Architecture documentation for the fireSniCompletionEvent() function in AbstractSniHandler.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  1ef968a9_7847_987c_c72c_df44a787fb17["fireSniCompletionEvent()"]
  ea4c5b1a_4a57_856f_cff7_cb1bfdabf2cf["AbstractSniHandler"]
  1ef968a9_7847_987c_c72c_df44a787fb17 -->|defined in| ea4c5b1a_4a57_856f_cff7_cb1bfdabf2cf
  5320bc29_8b66_0651_2f35_011310b6eee9["onLookupComplete()"]
  5320bc29_8b66_0651_2f35_011310b6eee9 -->|calls| 1ef968a9_7847_987c_c72c_df44a787fb17
  style 1ef968a9_7847_987c_c72c_df44a787fb17 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/AbstractSniHandler.java lines 213–220

    private static void fireSniCompletionEvent(ChannelHandlerContext ctx, String hostname, Future<?> future) {
        Throwable cause = future.cause();
        if (cause == null) {
            ctx.fireUserEventTriggered(new SniCompletionEvent(hostname));
        } else {
            ctx.fireUserEventTriggered(new SniCompletionEvent(hostname, cause));
        }
    }

Domain

Subdomains

Called By

Frequently Asked Questions

What does fireSniCompletionEvent() do?
fireSniCompletionEvent() is a function in the netty codebase, defined in handler/src/main/java/io/netty/handler/ssl/AbstractSniHandler.java.
Where is fireSniCompletionEvent() defined?
fireSniCompletionEvent() is defined in handler/src/main/java/io/netty/handler/ssl/AbstractSniHandler.java at line 213.
What calls fireSniCompletionEvent()?
fireSniCompletionEvent() is called by 1 function(s): onLookupComplete.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free