clientSocket() — netty Function Reference
Architecture documentation for the clientSocket() function in EpollSocketTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 526ee6ce_d0a5_a7a0_3443_4820e7b83107["clientSocket()"] 2104f5df_e24e_3ceb_8b6a_7d1927ef598b["EpollSocketTestPermutation"] 526ee6ce_d0a5_a7a0_3443_4820e7b83107 -->|defined in| 2104f5df_e24e_3ceb_8b6a_7d1927ef598b 8171cf8b_ad3e_bc87_d330_94a645c86641["socketWithoutFastOpen()"] 8171cf8b_ad3e_bc87_d330_94a645c86641 -->|calls| 526ee6ce_d0a5_a7a0_3443_4820e7b83107 847d5e04_f3f3_6693_5b55_7be952eb485e["clientSocketWithFastOpen()"] 847d5e04_f3f3_6693_5b55_7be952eb485e -->|calls| 526ee6ce_d0a5_a7a0_3443_4820e7b83107 style 526ee6ce_d0a5_a7a0_3443_4820e7b83107 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java lines 100–119
@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(EPOLL_GROUP).channel(EpollSocketChannel.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
Source
Frequently Asked Questions
What does clientSocket() do?
clientSocket() is a function in the netty codebase, defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java.
Where is clientSocket() defined?
clientSocket() is defined in transport-native-epoll/src/test/java/io/netty/channel/epoll/EpollSocketTestPermutation.java at line 100.
What calls clientSocket()?
clientSocket() is called by 2 function(s): clientSocketWithFastOpen, socketWithoutFastOpen.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free