leaveGroup0() — netty Function Reference
Architecture documentation for the leaveGroup0() function in EpollDatagramChannel.java from the netty codebase.
Entity Profile
Dependency Diagram
graph TD c6f7778f_13fd_a159_fc43_449e763fe93e["leaveGroup0()"] dab3c3bb_b3e2_f3b8_e8e0_37c99496afe9["EpollDatagramChannel"] c6f7778f_13fd_a159_fc43_449e763fe93e -->|defined in| dab3c3bb_b3e2_f3b8_e8e0_37c99496afe9 48c41081_e738_42d1_96c1_9fec0343e1e4["ChannelFuture()"] 48c41081_e738_42d1_96c1_9fec0343e1e4 -->|calls| c6f7778f_13fd_a159_fc43_449e763fe93e style c6f7778f_13fd_a159_fc43_449e763fe93e fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
transport-classes-epoll/src/main/java/io/netty/channel/epoll/EpollDatagramChannel.java lines 293–304
private void leaveGroup0(
final InetAddress multicastAddress, final NetworkInterface networkInterface, final InetAddress source,
final ChannelPromise promise) {
assert eventLoop().inEventLoop();
try {
socket.leaveGroup(multicastAddress, networkInterface, source);
promise.setSuccess();
} catch (IOException e) {
promise.setFailure(e);
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does leaveGroup0() do?
leaveGroup0() is a function in the netty codebase, defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/EpollDatagramChannel.java.
Where is leaveGroup0() defined?
leaveGroup0() is defined in transport-classes-epoll/src/main/java/io/netty/channel/epoll/EpollDatagramChannel.java at line 293.
What calls leaveGroup0()?
leaveGroup0() is called by 1 function(s): ChannelFuture.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free