Home / Function/ HostPort() — netty Function Reference

HostPort() — netty Function Reference

Architecture documentation for the HostPort() function in QuicClientSessionCache.java from the netty codebase.

Function java Buffer Allocators calls 2 called by 1

Entity Profile

Dependency Diagram

graph TD
  20350d6e_c962_de2d_ca2e_55c95630c551["HostPort()"]
  74f9b5d5_b2e0_4b42_1812_1f4fa50376e9["HostPort"]
  20350d6e_c962_de2d_ca2e_55c95630c551 -->|defined in| 74f9b5d5_b2e0_4b42_1812_1f4fa50376e9
  702745ac_e32b_b963_b962_5af878febaad["HostPort()"]
  702745ac_e32b_b963_b962_5af878febaad -->|calls| 20350d6e_c962_de2d_ca2e_55c95630c551
  702745ac_e32b_b963_b962_5af878febaad["HostPort()"]
  20350d6e_c962_de2d_ca2e_55c95630c551 -->|calls| 702745ac_e32b_b963_b962_5af878febaad
  5b438dfc_789c_9464_139c_c5e5ca3304d0["hashCode()"]
  20350d6e_c962_de2d_ca2e_55c95630c551 -->|calls| 5b438dfc_789c_9464_139c_c5e5ca3304d0
  style 20350d6e_c962_de2d_ca2e_55c95630c551 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClientSessionCache.java lines 217–222

        HostPort(@Nullable String host, int port) {
            this.host = host;
            this.port = port;
            // Calculate a hashCode that does ignore case.
            this.hash = 31 * AsciiString.hashCode(host) + port;
        }

Domain

Subdomains

Called By

Frequently Asked Questions

What does HostPort() do?
HostPort() is a function in the netty codebase, defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClientSessionCache.java.
Where is HostPort() defined?
HostPort() is defined in codec-classes-quic/src/main/java/io/netty/handler/codec/quic/QuicClientSessionCache.java at line 217.
What does HostPort() call?
HostPort() calls 2 function(s): HostPort, hashCode.
What calls HostPort()?
HostPort() is called by 1 function(s): HostPort.

Analyze Your Own Codebase

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

Try Supermodel Free