Uses of Class
io.vertx.mutiny.core.datagram.DatagramSocket
Packages that use DatagramSocket
-
Uses of DatagramSocket in io.vertx.mutiny.core
Methods in io.vertx.mutiny.core that return DatagramSocketModifier and TypeMethodDescriptionVertx.createDatagramSocket()Vertx.createDatagramSocket(io.vertx.core.datagram.DatagramSocketOptions options) -
Uses of DatagramSocket in io.vertx.mutiny.core.datagram
Fields in io.vertx.mutiny.core.datagram with type parameters of type DatagramSocketModifier and TypeFieldDescriptionstatic final io.smallrye.mutiny.vertx.TypeArg<DatagramSocket> DatagramSocket.__TYPE_ARGMethods in io.vertx.mutiny.core.datagram that return DatagramSocketModifier and TypeMethodDescriptionDatagramSocket.blockMulticastGroupAndForget(String multicastAddress, String sourceToBlock) Variant ofblockMulticastGroup(String,String)that ignores the result of the operation.DatagramSocket.blockMulticastGroupAndForget(String multicastAddress, String networkInterface, String sourceToBlock) Variant ofblockMulticastGroup(String,String,String)that ignores the result of the operation.DatagramSocket.endHandler(Runnable endHandler) Deprecated.removed in Vert.x 5DatagramSocket.exceptionHandler(Consumer<Throwable> handler) DatagramSocket.fetch(long amount) Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhereDatagramSocket.handler(Consumer<DatagramPacket> handler) DatagramSocket.listenAndAwait(int port, String host) Blocking variant oflisten(int,String).DatagramSocket.listenAndForget(int port, String host) Variant oflisten(int,String)that ignores the result of the operation.DatagramSocket.listenMulticastGroupAndForget(String multicastAddress) Variant oflistenMulticastGroup(String)that ignores the result of the operation.DatagramSocket.listenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant oflistenMulticastGroup(String,String,String)that ignores the result of the operation.static DatagramSocketDatagramSocket.newInstance(io.vertx.core.datagram.DatagramSocket arg) DatagramSocket.pause()Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhereDatagramSocket.resume()Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhereDatagramSocket.sendAndForget(Buffer packet, int port, String host) Variant ofsend(io.vertx.mutiny.core.buffer.Buffer,int,String)that ignores the result of the operation.DatagramSocket.sendAndForget(String str, int port, String host) Variant ofsend(String,int,String)that ignores the result of the operation.DatagramSocket.sendAndForget(String str, String enc, int port, String host) Variant ofsend(String,String,int,String)that ignores the result of the operation.DatagramSocket.unlistenMulticastGroupAndForget(String multicastAddress) Variant ofunlistenMulticastGroup(String)that ignores the result of the operation.DatagramSocket.unlistenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant ofunlistenMulticastGroup(String,String,String)that ignores the result of the operation.Methods in io.vertx.mutiny.core.datagram that return types with arguments of type DatagramSocketModifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<DatagramSocket> Start listening on the given port and host.