testScheduleBigDelayNotOverflow() — netty Function Reference
Architecture documentation for the testScheduleBigDelayNotOverflow() function in KQueueEventLoopTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fda83d2c_cb6e_02b4_a9d4_a8e67f952900["testScheduleBigDelayNotOverflow()"] fa060136_2d52_ceba_b979_1cd230af0c15["KQueueEventLoopTest"] fda83d2c_cb6e_02b4_a9d4_a8e67f952900 -->|defined in| fa060136_2d52_ceba_b979_1cd230af0c15 style fda83d2c_cb6e_02b4_a9d4_a8e67f952900 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueEventLoopTest.java lines 61–76
@Test
public void testScheduleBigDelayNotOverflow() {
EventLoopGroup group = new KQueueEventLoopGroup(1);
final EventLoop el = group.next();
Future<?> future = el.schedule(new Runnable() {
@Override
public void run() {
// NOOP
}
}, Long.MAX_VALUE, TimeUnit.MILLISECONDS);
assertFalse(future.awaitUninterruptibly(1000));
assertTrue(future.cancel(true));
group.shutdownGracefully();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does testScheduleBigDelayNotOverflow() do?
testScheduleBigDelayNotOverflow() is a function in the netty codebase, defined in transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueEventLoopTest.java.
Where is testScheduleBigDelayNotOverflow() defined?
testScheduleBigDelayNotOverflow() is defined in transport-native-kqueue/src/test/java/io/netty/channel/kqueue/KQueueEventLoopTest.java at line 61.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free