testScheduleWithFixedDelayNegative() — netty Function Reference
Architecture documentation for the testScheduleWithFixedDelayNegative() function in AbstractScheduledEventExecutorTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 9f9c3bec_26e4_9e1b_a34b_17fdc6da4eee["testScheduleWithFixedDelayNegative()"] ccf7d567_b257_8f50_583e_b3528c4962fd["AbstractScheduledEventExecutorTest"] 9f9c3bec_26e4_9e1b_a34b_17fdc6da4eee -->|defined in| ccf7d567_b257_8f50_583e_b3528c4962fd 712c56c7_5523_7d1c_dbeb_6cee16c2c11d["execute()"] 9f9c3bec_26e4_9e1b_a34b_17fdc6da4eee -->|calls| 712c56c7_5523_7d1c_dbeb_6cee16c2c11d style 9f9c3bec_26e4_9e1b_a34b_17fdc6da4eee fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
common/src/test/java/io/netty/util/concurrent/AbstractScheduledEventExecutorTest.java lines 110–119
@Test
public void testScheduleWithFixedDelayNegative() {
final TestScheduledEventExecutor executor = new TestScheduledEventExecutor();
assertThrows(IllegalArgumentException.class, new Executable() {
@Override
public void execute() {
executor.scheduleWithFixedDelay(TEST_RUNNABLE, 0, -1, TimeUnit.DAYS);
}
});
}
Domain
Subdomains
Calls
Source
Frequently Asked Questions
What does testScheduleWithFixedDelayNegative() do?
testScheduleWithFixedDelayNegative() is a function in the netty codebase, defined in common/src/test/java/io/netty/util/concurrent/AbstractScheduledEventExecutorTest.java.
Where is testScheduleWithFixedDelayNegative() defined?
testScheduleWithFixedDelayNegative() is defined in common/src/test/java/io/netty/util/concurrent/AbstractScheduledEventExecutorTest.java at line 110.
What does testScheduleWithFixedDelayNegative() call?
testScheduleWithFixedDelayNegative() calls 1 function(s): execute.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free