Home / Class/ CombinationOfIoUringAndEpollTest Class — netty Architecture

CombinationOfIoUringAndEpollTest Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  74da041d_cbbf_957c_211e_eb97756d63a0["CombinationOfIoUringAndEpollTest"]
  c88cefeb_078b_8c21_d162_141ed8dfa4ba["CombinationOfIoUringAndEpollTest.java"]
  74da041d_cbbf_957c_211e_eb97756d63a0 -->|defined in| c88cefeb_078b_8c21_d162_141ed8dfa4ba
  8cd03063_8732_9428_6a0a_a337036798a3["loadJNI()"]
  74da041d_cbbf_957c_211e_eb97756d63a0 -->|method| 8cd03063_8732_9428_6a0a_a337036798a3
  b8a1737a_f7f2_a9be_7fea_d591ecdf0e5e["testIOUringAndEpollCanBothBeLoaded()"]
  74da041d_cbbf_957c_211e_eb97756d63a0 -->|method| b8a1737a_f7f2_a9be_7fea_d591ecdf0e5e

Relationship Graph

Source Code

transport-native-io_uring/src/test/java/io/netty/channel/uring/CombinationOfIoUringAndEpollTest.java lines 24–38

public class CombinationOfIoUringAndEpollTest {

    @BeforeAll
    public static void loadJNI() {
        assumeTrue(IoUring.isAvailable());
        // Epoll must be usable.
        Epoll.ensureAvailability();
    }

    @Test
    public void testIOUringAndEpollCanBothBeLoaded() {
        IoUring.ensureAvailability();
        Epoll.ensureAvailability();
    }
}

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free