DatagramSocket |
DatagramSocket.blockMulticastGroup(String multicastAddress,
String sourceToBlock) |
Block the given address for the given multicast address and notifies the once
the operation completes.
|
DatagramSocket |
DatagramSocket.blockMulticastGroup(String multicastAddress,
String sourceToBlock,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Block the given address for the given multicast address and notifies the once
the operation completes.
|
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.
|
DatagramSocket |
DatagramSocket.blockMulticastGroup(String multicastAddress,
String networkInterface,
String sourceToBlock,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Block the given address for the given multicast address on the given network interface and notifies
the once the operation completes.
|
DatagramSocket |
DatagramSocket.endHandler(io.vertx.core.Handler<Void> endHandler) |
Deprecated.
|
DatagramSocket |
DatagramSocket.exceptionHandler(io.vertx.core.Handler<Throwable> handler) |
|
DatagramSocket |
DatagramSocket.fetch(long amount) |
Deprecated.
|
DatagramSocket |
DatagramSocket.handler(io.vertx.core.Handler<DatagramPacket> handler) |
|
DatagramSocket |
DatagramSocket.listen(int port,
String host) |
Start listening on the given port and host.
|
DatagramSocket |
DatagramSocket.listen(int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<DatagramSocket>> handler) |
Start listening on the given port and host.
|
DatagramSocket |
DatagramSocket.listenMulticastGroup(String multicastAddress) |
Joins a multicast group and listens for packets send to it.
|
DatagramSocket |
DatagramSocket.listenMulticastGroup(String multicastAddress,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Joins a multicast group and listens for packets send to it.
|
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.
|
DatagramSocket |
DatagramSocket.listenMulticastGroup(String multicastAddress,
String networkInterface,
String source,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Joins a multicast group and listens for packets send to it on the given network interface.
|
static DatagramSocket |
DatagramSocket.newInstance(io.vertx.core.datagram.DatagramSocket arg) |
|
DatagramSocket |
DatagramSocket.pause() |
Deprecated.
|
DatagramSocket |
DatagramSocket.resume() |
Deprecated.
|
DatagramSocket |
DatagramSocket.send(Buffer packet,
int port,
String host) |
|
DatagramSocket |
DatagramSocket.send(Buffer packet,
int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
|
DatagramSocket |
DatagramSocket.send(String str,
int port,
String host) |
|
DatagramSocket |
DatagramSocket.send(String str,
int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
|
DatagramSocket |
DatagramSocket.send(String str,
String enc,
int port,
String host) |
|
DatagramSocket |
DatagramSocket.send(String str,
String enc,
int port,
String host,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
|
DatagramSocket |
DatagramSocket.unlistenMulticastGroup(String multicastAddress) |
Leaves a multicast group and stops listening for packets send to it.
|
DatagramSocket |
DatagramSocket.unlistenMulticastGroup(String multicastAddress,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Leaves a multicast group and stops listening for packets send to it.
|
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.
|
DatagramSocket |
DatagramSocket.unlistenMulticastGroup(String multicastAddress,
String networkInterface,
String source,
io.vertx.core.Handler<io.vertx.core.AsyncResult<Void>> handler) |
Leaves a multicast group and stops listening for packets send to it on the given network interface.
|