clientSocket() — netty Function Reference
Architecture documentation for the clientSocket() function in KQueueSocketTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 050f1a65_b845_736f_b037_c48e2aa8e88a["clientSocket()"] 8df74157_ee6b_4bb5_84ec_4d5083b86dfc["KQueueSocketTestPermutation"] 050f1a65_b845_736f_b037_c48e2aa8e88a -->|defined in| 8df74157_ee6b_4bb5_84ec_4d5083b86dfc 07c50211_39ff_f0ff_8cb3_048583441710["clientSocketWithFastOpen()"] 07c50211_39ff_f0ff_8cb3_048583441710 -->|calls| 050f1a65_b845_736f_b037_c48e2aa8e88a style 050f1a65_b845_736f_b037_c48e2aa8e88a fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueSocketTestPermutation.java lines 93–112
@Override
public List<BootstrapFactory<Bootstrap>> clientSocket() {
List<BootstrapFactory<Bootstrap>> toReturn = new ArrayList<BootstrapFactory<Bootstrap>>();
toReturn.add(new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(KQUEUE_GROUP).channel(KQueueSocketChannel.class);
}
});
toReturn.add(new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(NIO_GROUP).channel(NioSocketChannel.class);
}
});
return toReturn;
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does clientSocket() do?
clientSocket() is a function in the netty codebase, defined in transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueSocketTestPermutation.java.
Where is clientSocket() defined?
clientSocket() is defined in transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueSocketTestPermutation.java at line 93.
What calls clientSocket()?
clientSocket() is called by 1 function(s): clientSocketWithFastOpen.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free