Home / Class/ IoUringBufferRingSocketStartTlsTest Class — netty Architecture

IoUringBufferRingSocketStartTlsTest Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  24a2431a_a961_19c4_5c2e_14f02134107d["IoUringBufferRingSocketStartTlsTest"]
  ec6157bb_b4e8_231b_209a_d3879da5ca67["IoUringBufferRingSocketStartTlsTest.java"]
  24a2431a_a961_19c4_5c2e_14f02134107d -->|defined in| ec6157bb_b4e8_231b_209a_d3879da5ca67
  0176afa1_94df_1a81_a451_3b1283a11d03["loadJNI()"]
  24a2431a_a961_19c4_5c2e_14f02134107d -->|method| 0176afa1_94df_1a81_a451_3b1283a11d03
  ee9e773c_d251_9fdd_8027_4a663100d315["newFactories()"]
  24a2431a_a961_19c4_5c2e_14f02134107d -->|method| ee9e773c_d251_9fdd_8027_4a663100d315
  b4027c97_4b1d_aeec_f460_7b116c931d15["configure()"]
  24a2431a_a961_19c4_5c2e_14f02134107d -->|method| b4027c97_4b1d_aeec_f460_7b116c931d15

Relationship Graph

Source Code

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

public class IoUringBufferRingSocketStartTlsTest extends SocketStartTlsTest {

    @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 IoUringBufferRingSocketStartTlsTest class?
IoUringBufferRingSocketStartTlsTest is a class in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringBufferRingSocketStartTlsTest.java.
Where is IoUringBufferRingSocketStartTlsTest defined?
IoUringBufferRingSocketStartTlsTest is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringBufferRingSocketStartTlsTest.java at line 29.

Analyze Your Own Codebase

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

Try Supermodel Free