serverSocket() — netty Function Reference
Architecture documentation for the serverSocket() function in SocketTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 5d76dd4b_2186_fbb9_d8f4_2e00853f4290["serverSocket()"] d1a88829_0f4e_903e_71ca_619ab445cd85["SocketTestPermutation"] 5d76dd4b_2186_fbb9_d8f4_2e00853f4290 -->|defined in| d1a88829_0f4e_903e_71ca_619ab445cd85 50e0adfe_30dd_f27b_4d68_e61ba9cf2245["socket()"] 50e0adfe_30dd_f27b_4d68_e61ba9cf2245 -->|calls| 5d76dd4b_2186_fbb9_d8f4_2e00853f4290 e375456a_bf0f_2c10_aae7_ea3b93f273e9["socketWithFastOpen()"] e375456a_bf0f_2c10_aae7_ea3b93f273e9 -->|calls| 5d76dd4b_2186_fbb9_d8f4_2e00853f4290 style 5d76dd4b_2186_fbb9_d8f4_2e00853f4290 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketTestPermutation.java lines 169–190
public List<BootstrapFactory<ServerBootstrap>> serverSocket() {
List<BootstrapFactory<ServerBootstrap>> factories = new ArrayList<>();
factories.add(new BootstrapFactory<ServerBootstrap>() {
@Override
public ServerBootstrap newInstance() {
return new ServerBootstrap().group(NIO_GROUP)
.channel(NioServerSocketChannel.class);
}
});
if (INCLUDE_OIO) {
factories.add(new BootstrapFactory<ServerBootstrap>() {
@Override
public ServerBootstrap newInstance() {
return new ServerBootstrap().group(OIO_GROUP)
.channel(OioServerSocketChannel.class)
.option(ChannelOption.SO_TIMEOUT, OIO_SO_TIMEOUT);
}
});
}
return factories;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does serverSocket() do?
serverSocket() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketTestPermutation.java.
Where is serverSocket() defined?
serverSocket() is defined in testsuite/src/main/java/io/netty/testsuite/transport/socket/SocketTestPermutation.java at line 169.
What calls serverSocket()?
serverSocket() is called by 2 function(s): socket, socketWithFastOpen.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free