Home / Function/ onLookupComplete() — netty Function Reference

onLookupComplete() — netty Function Reference

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

Entity Profile

Dependency Diagram

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

Relationship Graph

Source Code

handler/src/main/java/io/netty/handler/ssl/AbstractSniHandler.java lines 185–195

    @Override
    protected void onLookupComplete(ChannelHandlerContext ctx, Future<T> future) throws Exception {
        if (timeoutFuture != null) {
            timeoutFuture.cancel(false);
        }
        try {
            onLookupComplete(ctx, hostname, future);
        } finally {
            fireSniCompletionEvent(ctx, hostname, future);
        }
    }

Domain

Subdomains

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free