Home / Function/ clientSocket() — netty Function Reference

clientSocket() — netty Function Reference

Architecture documentation for the clientSocket() function in IoUringSocketTestPermutation.java from the netty codebase.

Function java Buffer Telemetry calls 1 called by 2

Entity Profile

Dependency Diagram

graph TD
  9edf18b1_0126_8e3b_3058_75bc5ecb89d1["clientSocket()"]
  b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8["IoUringSocketTestPermutation"]
  9edf18b1_0126_8e3b_3058_75bc5ecb89d1 -->|defined in| b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8
  c1e75e72_1fe9_86bb_68ec_48a6b5ac7da0["socket()"]
  c1e75e72_1fe9_86bb_68ec_48a6b5ac7da0 -->|calls| 9edf18b1_0126_8e3b_3058_75bc5ecb89d1
  ce51a4c6_28ea_d3dc_c5e9_5c3f2856d742["clientSocketWithFastOpen()"]
  ce51a4c6_28ea_d3dc_c5e9_5c3f2856d742 -->|calls| 9edf18b1_0126_8e3b_3058_75bc5ecb89d1
  c0d4c4f7_8246_f07a_a7ff_665129ee249d["clientSocketIoUringOnly()"]
  9edf18b1_0126_8e3b_3058_75bc5ecb89d1 -->|calls| c0d4c4f7_8246_f07a_a7ff_665129ee249d
  style 9edf18b1_0126_8e3b_3058_75bc5ecb89d1 fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java lines 163–175

    @Override
    public List<BootstrapFactory<Bootstrap>> clientSocket() {
        List<BootstrapFactory<Bootstrap>> toReturn = clientSocketIoUringOnly();
        toReturn.add(
                new BootstrapFactory<Bootstrap>() {
                    @Override
                    public Bootstrap newInstance() {
                        return new Bootstrap().group(NIO_GROUP).channel(NioSocketChannel.class);
                    }
                }
        );
        return toReturn;
    }

Domain

Subdomains

Frequently Asked Questions

What does clientSocket() do?
clientSocket() is a function in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java.
Where is clientSocket() defined?
clientSocket() is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java at line 163.
What does clientSocket() call?
clientSocket() calls 1 function(s): clientSocketIoUringOnly.
What calls clientSocket()?
clientSocket() is called by 2 function(s): clientSocketWithFastOpen, socket.

Analyze Your Own Codebase

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

Try Supermodel Free