public interface UdpOutbound extends NettyOutbound
Channel
.Modifier and Type | Method and Description |
---|---|
default Mono<Void> |
join(InetAddress multicastAddress)
Join a multicast group.
|
Mono<Void> |
join(InetAddress multicastAddress,
NetworkInterface iface)
Join a multicast group.
|
default Mono<Void> |
leave(InetAddress multicastAddress)
Leave a multicast group.
|
Mono<Void> |
leave(InetAddress multicastAddress,
NetworkInterface iface)
Leave a multicast group.
|
alloc, neverComplete, send, send, sendByteArray, sendFile, sendFile, sendFileChunked, sendGroups, sendObject, sendObject, sendObject, sendString, sendString, sendUsing, subscribe, then, then, then, withConnection
default Mono<Void> join(InetAddress multicastAddress)
multicastAddress
- multicast address of the group to joinPublisher
that will be complete when the group has been joinedUnsupportedOperationException
- when Unix Domain SocketsMono<Void> join(InetAddress multicastAddress, @Nullable NetworkInterface iface)
multicastAddress
- multicast address of the group to joinPublisher
that will be complete when the group has been joinedUnsupportedOperationException
- when Unix Domain Socketsdefault Mono<Void> leave(InetAddress multicastAddress)
multicastAddress
- multicast address of the group to leavePublisher
that will be complete when the group has been leftUnsupportedOperationException
- when Unix Domain SocketsMono<Void> leave(InetAddress multicastAddress, @Nullable NetworkInterface iface)
multicastAddress
- multicast address of the group to leavePublisher
that will be complete when the group has been leftUnsupportedOperationException
- when Unix Domain Sockets