Home / Class/ CombinationOfEpollAndIoUringTest Class — netty Architecture

CombinationOfEpollAndIoUringTest Class — netty Architecture

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

Entity Profile

Dependency Diagram

graph TD
  0d6373de_af24_ea29_6591_cece6abb2c2b["CombinationOfEpollAndIoUringTest"]
  e6c04173_488a_4fb6_453f_246712cadfae["CombinationOfEpollAndIoUringTest.java"]
  0d6373de_af24_ea29_6591_cece6abb2c2b -->|defined in| e6c04173_488a_4fb6_453f_246712cadfae
  2d148db8_3011_0998_655b_2272e138fa38["loadJNI()"]
  0d6373de_af24_ea29_6591_cece6abb2c2b -->|method| 2d148db8_3011_0998_655b_2272e138fa38
  6d04e016_09cc_dc16_fc00_04d4df5a25c2["testEpollAndIOUringCanBothBeLoaded()"]
  0d6373de_af24_ea29_6591_cece6abb2c2b -->|method| 6d04e016_09cc_dc16_fc00_04d4df5a25c2

Relationship Graph

Source Code

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

public class CombinationOfEpollAndIoUringTest {

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

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

Frequently Asked Questions

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

Analyze Your Own Codebase

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

Try Supermodel Free