pollAddComplete() — netty Function Reference
Architecture documentation for the pollAddComplete() function in AbstractIoUringChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD fa9b16c6_c963_88d2_4e5b_2bd377a7b30c["pollAddComplete()"] 19011d76_ce85_4831_bbdf_3b21a88f2b1b["AbstractUringUnsafe"] fa9b16c6_c963_88d2_4e5b_2bd377a7b30c -->|defined in| 19011d76_ce85_4831_bbdf_3b21a88f2b1b 5f45f466_5da9_76a6_e49e_f54bf3e34ae8["handle()"] 5f45f466_5da9_76a6_e49e_f54bf3e34ae8 -->|calls| fa9b16c6_c963_88d2_4e5b_2bd377a7b30c 904f93b1_ee9b_81f5_6f1b_40d546f64f43["pollOut()"] fa9b16c6_c963_88d2_4e5b_2bd377a7b30c -->|calls| 904f93b1_ee9b_81f5_6f1b_40d546f64f43 6a04c16d_8502_7577_a0f5_106cd3fcc3b8["pollIn()"] fa9b16c6_c963_88d2_4e5b_2bd377a7b30c -->|calls| 6a04c16d_8502_7577_a0f5_106cd3fcc3b8 8311957b_86d1_5783_3d8a_214c886ad3bc["pollRdHup()"] fa9b16c6_c963_88d2_4e5b_2bd377a7b30c -->|calls| 8311957b_86d1_5783_3d8a_214c886ad3bc style fa9b16c6_c963_88d2_4e5b_2bd377a7b30c fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringChannel.java lines 519–529
private void pollAddComplete(int res, int flags, short data) {
if ((res & Native.POLLOUT) != 0) {
pollOut(res);
}
if ((res & Native.POLLIN) != 0) {
pollIn(res, flags, data);
}
if ((res & Native.POLLRDHUP) != 0) {
pollRdHup(res);
}
}
Domain
Subdomains
Defined In
Called By
Source
Frequently Asked Questions
What does pollAddComplete() do?
pollAddComplete() is a function in the netty codebase, defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringChannel.java.
Where is pollAddComplete() defined?
pollAddComplete() is defined in transport-classes-io_uring/src/main/java/io/netty/channel/uring/AbstractIoUringChannel.java at line 519.
What does pollAddComplete() call?
pollAddComplete() calls 3 function(s): pollIn, pollOut, pollRdHup.
What calls pollAddComplete()?
pollAddComplete() is called by 1 function(s): handle.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free