Home / Class/ IoUringBufferRingSocketFixedLengthEchoTest Class — netty Architecture

IoUringBufferRingSocketFixedLengthEchoTest Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  c2d400ad_115c_51c9_bde9_7f1b2b4e3afa["IoUringBufferRingSocketFixedLengthEchoTest"]
  1ca4cb76_65fa_f0da_2e80_4780d108daf5["IoUringBufferRingSocketFixedLengthEchoTest.java"]
  c2d400ad_115c_51c9_bde9_7f1b2b4e3afa -->|defined in| 1ca4cb76_65fa_f0da_2e80_4780d108daf5
  14c43a64_3a78_a6c2_d5b4_35f6c82120f7["loadJNI()"]
  c2d400ad_115c_51c9_bde9_7f1b2b4e3afa -->|method| 14c43a64_3a78_a6c2_d5b4_35f6c82120f7
  848fc8d6_710b_61f2_d9cc_57d3a804df39["newFactories()"]
  c2d400ad_115c_51c9_bde9_7f1b2b4e3afa -->|method| 848fc8d6_710b_61f2_d9cc_57d3a804df39
  6dbd38ae_3aa2_9de5_57f4_846bb9cb9bd4["configure()"]
  c2d400ad_115c_51c9_bde9_7f1b2b4e3afa -->|method| 6dbd38ae_3aa2_9de5_57f4_846bb9cb9bd4

Relationship Graph

Source Code

transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringBufferRingSocketFixedLengthEchoTest.java lines 29–48

public class IoUringBufferRingSocketFixedLengthEchoTest extends SocketFixedLengthEchoTest {

    @BeforeAll
    public static void loadJNI() {
        assumeTrue(IoUring.isAvailable());
        assumeTrue(IoUring.isRegisterBufferRingSupported());
    }

    @Override
    protected List<TestsuitePermutation.BootstrapComboFactory<ServerBootstrap, Bootstrap>> newFactories() {
        return IoUringSocketTestPermutation.INSTANCE.socket();
    }

    @Override
    protected void configure(ServerBootstrap sb, Bootstrap cb, ByteBufAllocator allocator) {
        super.configure(sb, cb, allocator);
        sb.childOption(IoUringChannelOption.IO_URING_BUFFER_GROUP_ID, IoUringSocketTestPermutation.BGID);
        cb.option(IoUringChannelOption.IO_URING_BUFFER_GROUP_ID, IoUringSocketTestPermutation.BGID);
    }
}

Frequently Asked Questions

What is the IoUringBufferRingSocketFixedLengthEchoTest class?
IoUringBufferRingSocketFixedLengthEchoTest is a class in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringBufferRingSocketFixedLengthEchoTest.java.
Where is IoUringBufferRingSocketFixedLengthEchoTest defined?
IoUringBufferRingSocketFixedLengthEchoTest is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringBufferRingSocketFixedLengthEchoTest.java at line 29.

Analyze Your Own Codebase

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

Try Supermodel Free