mustCallInitializerExtensions() — netty Function Reference
Architecture documentation for the mustCallInitializerExtensions() function in BootstrapTest.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 582ae896_8f3a_1798_6318_7f537f30c010["mustCallInitializerExtensions()"] 7a7606db_8d2a_bfe0_9993_4aaa8e0a6e42["BootstrapTest"] 582ae896_8f3a_1798_6318_7f537f30c010 -->|defined in| 7a7606db_8d2a_bfe0_9993_4aaa8e0a6e42 style 582ae896_8f3a_1798_6318_7f537f30c010 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/test/java/io/netty/bootstrap/BootstrapTest.java lines 497–514
@Test
void mustCallInitializerExtensions() throws Exception {
final Bootstrap cb = new Bootstrap();
cb.group(groupA);
cb.handler(dummyHandler);
cb.channel(LocalChannel.class);
StubChannelInitializerExtension.clearThreadLocals();
ChannelFuture future = cb.register();
future.sync();
final Channel expectedChannel = future.channel();
assertSame(expectedChannel, StubChannelInitializerExtension.lastSeenClientChannel.get());
assertNull(StubChannelInitializerExtension.lastSeenChildChannel.get());
assertNull(StubChannelInitializerExtension.lastSeenListenerChannel.get());
expectedChannel.close().sync();
}
Domain
Subdomains
Source
Frequently Asked Questions
What does mustCallInitializerExtensions() do?
mustCallInitializerExtensions() is a function in the netty codebase, defined in transport/src/test/java/io/netty/bootstrap/BootstrapTest.java.
Where is mustCallInitializerExtensions() defined?
mustCallInitializerExtensions() is defined in transport/src/test/java/io/netty/bootstrap/BootstrapTest.java at line 497.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free