clearFlag() — netty Function Reference
Architecture documentation for the clearFlag() function in AbstractEpollChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD d7b9cff6_e957_5368_8766_17c20e4c829f["clearFlag()"] 6a1b1970_2eef_b28f_03e7_8b11508deece["AbstractEpollChannel"] d7b9cff6_e957_5368_8766_17c20e4c829f -->|defined in| 6a1b1970_2eef_b28f_03e7_8b11508deece 58b9aeb2_5343_e611_e004_2c5a523f6624["clearEpollRdHup()"] 58b9aeb2_5343_e611_e004_2c5a523f6624 -->|calls| d7b9cff6_e957_5368_8766_17c20e4c829f 26534c2f_a6cf_698d_8608_d82430b32dc2["doFinishConnect()"] 26534c2f_a6cf_698d_8608_d82430b32dc2 -->|calls| d7b9cff6_e957_5368_8766_17c20e4c829f style d7b9cff6_e957_5368_8766_17c20e4c829f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java lines 132–140
void clearFlag(int flag) throws IOException {
IoRegistration registration = registration();
if (!ops.contains(flag)) {
// we can save a syscall if the ops did not change
return;
}
ops = ops.without(EpollIoOps.valueOf(flag));
registration.submit(ops);
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does clearFlag() do?
clearFlag() is a function in the netty codebase, defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java.
Where is clearFlag() defined?
clearFlag() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java at line 132.
What calls clearFlag()?
clearFlag() is called by 2 function(s): clearEpollRdHup, doFinishConnect.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free