Package reactor.netty.udp
Interface UdpOutbound
- All Superinterfaces:
NettyOutbound,Publisher<Void>
An outbound-traffic API delegating to an underlying
Channel.- Author:
- Stephane Maldini
-
Method Summary
Modifier and TypeMethodDescriptionjoin(InetAddress multicastAddress) Join a multicast group.join(InetAddress multicastAddress, @Nullable NetworkInterface iface) Join a multicast group.leave(InetAddress multicastAddress) Leave a multicast group.leave(InetAddress multicastAddress, @Nullable NetworkInterface iface) Leave a multicast group.Methods inherited from interface reactor.netty.NettyOutbound
alloc, neverComplete, send, send, sendByteArray, sendFile, sendFile, sendFileChunked, sendGroups, sendObject, sendObject, sendObject, sendString, sendString, sendUsing, subscribe, then, then, then, withConnection
-
Method Details
-
join
Join a multicast group.- Parameters:
multicastAddress- multicast address of the group to join- Returns:
- a
Publisherthat will be complete when the group has been joined - Throws:
UnsupportedOperationException- when Unix Domain Sockets
-
join
Join a multicast group.- Parameters:
multicastAddress- multicast address of the group to join- Returns:
- a
Publisherthat will be complete when the group has been joined - Throws:
UnsupportedOperationException- when Unix Domain Sockets
-
leave
Leave a multicast group.- Parameters:
multicastAddress- multicast address of the group to leave- Returns:
- a
Publisherthat will be complete when the group has been left - Throws:
UnsupportedOperationException- when Unix Domain Sockets
-
leave
Leave a multicast group.- Parameters:
multicastAddress- multicast address of the group to leave- Returns:
- a
Publisherthat will be complete when the group has been left - Throws:
UnsupportedOperationException- when Unix Domain Sockets
-