clearEpollRdHup() — netty Function Reference
Architecture documentation for the clearEpollRdHup() function in AbstractEpollChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD 58b9aeb2_5343_e611_e004_2c5a523f6624["clearEpollRdHup()"] 48a4b0f2_9a93_c0ec_29eb_423e8fb5ce85["AbstractEpollUnsafe"] 58b9aeb2_5343_e611_e004_2c5a523f6624 -->|defined in| 48a4b0f2_9a93_c0ec_29eb_423e8fb5ce85 d090690c_ba63_7842_6536_a467e153f1b2["epollRdHupReady()"] d090690c_ba63_7842_6536_a467e153f1b2 -->|calls| 58b9aeb2_5343_e611_e004_2c5a523f6624 d7b9cff6_e957_5368_8766_17c20e4c829f["clearFlag()"] 58b9aeb2_5343_e611_e004_2c5a523f6624 -->|calls| d7b9cff6_e957_5368_8766_17c20e4c829f d9ab1040_9ace_496a_a503_4d950b47fbce["close()"] 58b9aeb2_5343_e611_e004_2c5a523f6624 -->|calls| d9ab1040_9ace_496a_a503_4d950b47fbce style 58b9aeb2_5343_e611_e004_2c5a523f6624 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java lines 532–539
private void clearEpollRdHup() {
try {
clearFlag(Native.EPOLLRDHUP);
} catch (IOException e) {
pipeline().fireExceptionCaught(e);
close(voidPromise());
}
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does clearEpollRdHup() do?
clearEpollRdHup() is a function in the netty codebase, defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java.
Where is clearEpollRdHup() defined?
clearEpollRdHup() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/AbstractEpollChannel.java at line 532.
What does clearEpollRdHup() call?
clearEpollRdHup() calls 2 function(s): clearFlag, close.
What calls clearEpollRdHup()?
clearEpollRdHup() is called by 1 function(s): epollRdHupReady.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free