Home / Class/ AbstractSctpTest Class — netty Architecture

AbstractSctpTest Class — netty Architecture

Architecture documentation for the AbstractSctpTest class in AbstractSctpTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  148830ed_808e_7701_fa05_5d4909672211["AbstractSctpTest"]
  cb12ab84_24ce_6136_6dac_ed55276a2250["AbstractSctpTest.java"]
  148830ed_808e_7701_fa05_5d4909672211 -->|defined in| cb12ab84_24ce_6136_6dac_ed55276a2250
  ace554d8_f757_c16e_3e37_a031eada9880["newFactories()"]
  148830ed_808e_7701_fa05_5d4909672211 -->|method| ace554d8_f757_c16e_3e37_a031eada9880
  7efae03d_8c35_fb3a_6398_3051200f0f7e["configure()"]
  148830ed_808e_7701_fa05_5d4909672211 -->|method| 7efae03d_8c35_fb3a_6398_3051200f0f7e

Relationship Graph

Source Code

testsuite/src/main/java/io/netty/testsuite/transport/sctp/AbstractSctpTest.java lines 29–42

public abstract class AbstractSctpTest extends AbstractComboTestsuiteTest<ServerBootstrap, Bootstrap> {
    @Override
    protected List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap, Bootstrap>> newFactories() {
        return SctpTestPermutation.sctpChannel();
    }

    @Override
    protected void configure(ServerBootstrap serverBootstrap, Bootstrap bootstrap, ByteBufAllocator allocator) {
        serverBootstrap.localAddress(new InetSocketAddress(NetUtil.LOCALHOST, 0));
        serverBootstrap.option(ChannelOption.ALLOCATOR, allocator);
        serverBootstrap.childOption(ChannelOption.ALLOCATOR, allocator);
        bootstrap.option(ChannelOption.ALLOCATOR, allocator);
    }
}

Frequently Asked Questions

What is the AbstractSctpTest class?
AbstractSctpTest is a class in the netty codebase, defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/AbstractSctpTest.java.
Where is AbstractSctpTest defined?
AbstractSctpTest is defined in testsuite/src/main/java/io/netty/testsuite/transport/sctp/AbstractSctpTest.java at line 29.

Analyze Your Own Codebase

Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.

Try Supermodel Free