io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.blockMulticastGroup(String multicastAddress,
String sourceToBlock) |
Block the given address for the given multicast address and notifies the once
the operation completes.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.blockMulticastGroup(String multicastAddress,
String networkInterface,
String sourceToBlock) |
Block the given address for the given multicast address on the given network interface and notifies
the once the operation completes.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.listen(int port,
String host) |
Start listening on the given port and host.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.listenMulticastGroup(String multicastAddress) |
Joins a multicast group and listens for packets send to it.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.listenMulticastGroup(String multicastAddress,
String networkInterface,
String source) |
Joins a multicast group and listens for packets send to it on the given network interface.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.send(Buffer packet,
int port,
String host) |
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.send(String str,
int port,
String host) |
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.send(String str,
String enc,
int port,
String host) |
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.unlistenMulticastGroup(String multicastAddress) |
Leaves a multicast group and stops listening for packets send to it.
|
io.smallrye.mutiny.Uni<DatagramSocket> |
DatagramSocket.unlistenMulticastGroup(String multicastAddress,
String networkInterface,
String source) |
Leaves a multicast group and stops listening for packets send to it on the given network interface.
|