clientSocketIoUringOnly() — netty Function Reference
Architecture documentation for the clientSocketIoUringOnly() function in IoUringSocketTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c0d4c4f7_8246_f07a_a7ff_665129ee249d["clientSocketIoUringOnly()"] b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8["IoUringSocketTestPermutation"] c0d4c4f7_8246_f07a_a7ff_665129ee249d -->|defined in| b9d8589a_7c28_e55d_4254_c7b2d8ffa8b8 9edf18b1_0126_8e3b_3058_75bc5ecb89d1["clientSocket()"] 9edf18b1_0126_8e3b_3058_75bc5ecb89d1 -->|calls| c0d4c4f7_8246_f07a_a7ff_665129ee249d style c0d4c4f7_8246_f07a_a7ff_665129ee249d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java lines 141–161
List<BootstrapFactory<Bootstrap>> clientSocketIoUringOnly() {
List<BootstrapFactory<Bootstrap>> toReturn = new ArrayList<>();
toReturn.add(
new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(IO_URING_GROUP).channel(IoUringSocketChannel.class);
}
});
if (IO_URING_INCREMENTAL_GROUP != null) {
toReturn.add(
new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(IO_URING_INCREMENTAL_GROUP)
.channel(IoUringSocketChannel.class);
}
});
}
return toReturn;
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does clientSocketIoUringOnly() do?
clientSocketIoUringOnly() is a function in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java.
Where is clientSocketIoUringOnly() defined?
clientSocketIoUringOnly() is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringSocketTestPermutation.java at line 141.
What calls clientSocketIoUringOnly()?
clientSocketIoUringOnly() is called by 1 function(s): clientSocket.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free