Home / Function/ testSchedule() — netty Function Reference

testSchedule() — netty Function Reference

Architecture documentation for the testSchedule() function in IoUringEventLoopTest.java from the netty codebase.

Entity Profile

Dependency Diagram

graph TD
  f3324bef_043f_4b08_4044_efb827b0b2cc["testSchedule()"]
  bf8a255d_67ed_191c_39f9_4a9ca57b3792["IoUringEventLoopTest"]
  f3324bef_043f_4b08_4044_efb827b0b2cc -->|defined in| bf8a255d_67ed_191c_39f9_4a9ca57b3792
  style f3324bef_043f_4b08_4044_efb827b0b2cc fill:#6366f1,stroke:#818cf8,color:#fff

Relationship Graph

Source Code

transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringEventLoopTest.java lines 102–111

    @Test
    public void testSchedule() throws Exception {
        EventLoopGroup group = new MultiThreadIoEventLoopGroup(1, IoUringIoHandler.newFactory());
        try {
            EventLoop loop = group.next();
            loop.schedule(EMPTY_RUNNABLE, 1, TimeUnit.SECONDS).sync();
        } finally {
            group.shutdownGracefully();
        }
    }

Domain

Subdomains

Frequently Asked Questions

What does testSchedule() do?
testSchedule() is a function in the netty codebase, defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringEventLoopTest.java.
Where is testSchedule() defined?
testSchedule() is defined in transport-native-io_uring/src/test/java/io/netty/channel/uring/IoUringEventLoopTest.java at line 102.

Analyze Your Own Codebase

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

Try Supermodel Free