registerForIo0() — netty Function Reference
Architecture documentation for the registerForIo0() function in ManualIoEventLoop.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 8b7c2203_b468_c728_3f98_58ac03985021["registerForIo0()"] 6e8a7bbd_d782_0f59_8bd2_22f815f8ecad["ManualIoEventLoop"] 8b7c2203_b468_c728_3f98_58ac03985021 -->|defined in| 6e8a7bbd_d782_0f59_8bd2_22f815f8ecad 1ea01bfe_aff7_1fed_ded7_0caadc201a25["register()"] 1ea01bfe_aff7_1fed_ded7_0caadc201a25 -->|calls| 8b7c2203_b468_c728_3f98_58ac03985021 cb229a6f_1187_05e7_0073_c0b824cf6ff7["inEventLoop()"] 8b7c2203_b468_c728_3f98_58ac03985021 -->|calls| cb229a6f_1187_05e7_0073_c0b824cf6ff7 style 8b7c2203_b468_c728_3f98_58ac03985021 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport/src/main/java/io/netty/channel/ManualIoEventLoop.java lines 394–404
private void registerForIo0(final IoHandle handle, Promise<IoRegistration> promise) {
assert inEventLoop();
final IoRegistration registration;
try {
registration = handler.register(handle);
} catch (Exception e) {
promise.setFailure(e);
return;
}
promise.setSuccess(registration);
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does registerForIo0() do?
registerForIo0() is a function in the netty codebase, defined in transport/src/main/java/io/netty/channel/ManualIoEventLoop.java.
Where is registerForIo0() defined?
registerForIo0() is defined in transport/src/main/java/io/netty/channel/ManualIoEventLoop.java at line 394.
What does registerForIo0() call?
registerForIo0() calls 1 function(s): inEventLoop.
What calls registerForIo0()?
registerForIo0() is called by 1 function(s): register.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free