sctpClientChannel() — netty Function Reference
Architecture documentation for the sctpClientChannel() function in SctpTestPermutation.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD bfeb5b2f_4347_4859_df6a_666fdb9def43["sctpClientChannel()"] 3441e8d1_071f_8f60_91b2_bf7755ab0cc1["SctpTestPermutation"] bfeb5b2f_4347_4859_df6a_666fdb9def43 -->|defined in| 3441e8d1_071f_8f60_91b2_bf7755ab0cc1 c67aae3d_711b_9df8_53d5_df05aafbadb7["sctpChannel()"] c67aae3d_711b_9df8_53d5_df05aafbadb7 -->|calls| bfeb5b2f_4347_4859_df6a_666fdb9def43 style bfeb5b2f_4347_4859_df6a_666fdb9def43 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java lines 72–91
static List<BootstrapFactory<Bootstrap>> sctpClientChannel() {
if (!TestUtils.isSctpSupported()) {
return Collections.emptyList();
}
List<BootstrapFactory<Bootstrap>> list = new ArrayList<BootstrapFactory<Bootstrap>>();
list.add(new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(NIO_GROUP).channel(NioSctpChannel.class);
}
});
list.add(new BootstrapFactory<Bootstrap>() {
@Override
public Bootstrap newInstance() {
return new Bootstrap().group(OIO_GROUP).channel(OioSctpChannel.class);
}
});
return list;
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does sctpClientChannel() do?
sctpClientChannel() is a function in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java.
Where is sctpClientChannel() defined?
sctpClientChannel() is defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/SctpTestPermutation.java at line 72.
What calls sctpClientChannel()?
sctpClientChannel() is called by 1 function(s): sctpChannel.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free