public interface UdpOutbound extends NettyOutbound
Channel
.Modifier and Type | Method and Description |
---|---|
default reactor.core.publisher.Mono<java.lang.Void> |
join(java.net.InetAddress multicastAddress)
Join a multicast group.
|
reactor.core.publisher.Mono<java.lang.Void> |
join(java.net.InetAddress multicastAddress,
java.net.NetworkInterface iface)
Join a multicast group.
|
default reactor.core.publisher.Mono<java.lang.Void> |
leave(java.net.InetAddress multicastAddress)
Leave a multicast group.
|
reactor.core.publisher.Mono<java.lang.Void> |
leave(java.net.InetAddress multicastAddress,
java.net.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 reactor.core.publisher.Mono<java.lang.Void> join(java.net.InetAddress multicastAddress)
multicastAddress
- multicast address of the group to joinPublisher
that will be complete when the group has been joinedreactor.core.publisher.Mono<java.lang.Void> join(java.net.InetAddress multicastAddress, @Nullable java.net.NetworkInterface iface)
multicastAddress
- multicast address of the group to joinPublisher
that will be complete when the group has been joineddefault reactor.core.publisher.Mono<java.lang.Void> leave(java.net.InetAddress multicastAddress)
multicastAddress
- multicast address of the group to leavePublisher
that will be complete when the group has been leftreactor.core.publisher.Mono<java.lang.Void> leave(java.net.InetAddress multicastAddress, @Nullable java.net.NetworkInterface iface)
multicastAddress
- multicast address of the group to leavePublisher
that will be complete when the group has been left