- All Implemented Interfaces:
io.smallrye.mutiny.vertx.MutinyDelegate,Measured,ReadStream<DatagramPacket>,StreamBase
DatagramPacket's to remote datagram servers
and receive DatagramPackets .
Usually you use a datagram socket to send UDP over the wire. UDP is connection-less which means you are not connected to the remote peer in a persistent way. Because of this you have to supply the address and port of the remote peer when sending data.
You can send data to ipv4 or ipv6 addresses, which also include multicast addresses.
Please consult the documentation for more information on datagram sockets.
NOTE: This class has been automatically generated from theoriginal non Mutiny-ified interface using Vert.x codegen.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionDatagramSocket(io.vertx.core.datagram.DatagramSocket delegate) DatagramSocket(Object delegate) -
Method Summary
Modifier and TypeMethodDescriptionio.smallrye.mutiny.Uni<Void> 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<Void> 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.blockMulticastGroupAndAwait(String multicastAddress, String sourceToBlock) Blocking variant ofblockMulticastGroup(String,String).blockMulticastGroupAndAwait(String multicastAddress, String networkInterface, String sourceToBlock) Blocking variant ofblockMulticastGroup(String,String,String).blockMulticastGroupAndForget(String multicastAddress, String sourceToBlock) Variant ofblockMulticastGroup(String,String)that ignores the result of the operation.blockMulticastGroupAndForget(String multicastAddress, String networkInterface, String sourceToBlock) Variant ofblockMulticastGroup(String,String,String)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void> close()Closes theDatagramSocketimplementation asynchronous and notifies the handler once done.Blocking variant ofclose().voidVariant ofclose()that ignores the result of the operation.endHandler(Runnable endHandler) Deprecated.removed in Vert.x 5booleanexceptionHandler(Consumer<Throwable> handler) fetch(long amount) Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhereio.vertx.core.datagram.DatagramSockethandler(Consumer<DatagramPacket> handler) inthashCode()booleanio.smallrye.mutiny.Uni<DatagramSocket> Start listening on the given port and host.listenAndAwait(int port, String host) Blocking variant oflisten(int,String).listenAndForget(int port, String host) Variant oflisten(int,String)that ignores the result of the operation.io.smallrye.mutiny.Uni<Void> listenMulticastGroup(String multicastAddress) Joins a multicast group and listens for packets send to it.io.smallrye.mutiny.Uni<Void> listenMulticastGroup(String multicastAddress, String networkInterface, String source) Joins a multicast group and listens for packets send to it on the given network interface.listenMulticastGroupAndAwait(String multicastAddress) Blocking variant oflistenMulticastGroup(String).listenMulticastGroupAndAwait(String multicastAddress, String networkInterface, String source) Blocking variant oflistenMulticastGroup(String,String,String).listenMulticastGroupAndForget(String multicastAddress) Variant oflistenMulticastGroup(String)that ignores the result of the operation.listenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant oflistenMulticastGroup(String,String,String)that ignores the result of the operation.static DatagramSocketnewInstance(io.vertx.core.datagram.DatagramSocket arg) pause()Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewherepipe()io.smallrye.mutiny.Uni<Void> pipeTo(WriteStream<DatagramPacket> dst) Pipe thisReadStreamto theWriteStream.Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).voidVariant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.resume()Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhereio.smallrye.mutiny.Uni<Void> Write the givenBufferto theSocketAddress.io.smallrye.mutiny.Uni<Void> Write the givenStringto theSocketAddressusing UTF8 encoding.io.smallrye.mutiny.Uni<Void> Write the givenStringto theSocketAddressusing the given encoding.sendAndAwait(Buffer packet, int port, String host) Blocking variant ofsend(io.vertx.mutiny.core.buffer.Buffer,int,String).sendAndAwait(String str, int port, String host) Blocking variant ofsend(String,int,String).sendAndAwait(String str, String enc, int port, String host) Blocking variant ofsend(String,String,int,String).sendAndForget(Buffer packet, int port, String host) Variant ofsend(io.vertx.mutiny.core.buffer.Buffer,int,String)that ignores the result of the operation.sendAndForget(String str, int port, String host) Variant ofsend(String,int,String)that ignores the result of the operation.sendAndForget(String str, String enc, int port, String host) Variant ofsend(String,String,int,String)that ignores the result of the operation.io.smallrye.mutiny.Multi<DatagramPacket> toMulti()toString()io.smallrye.mutiny.Uni<Void> unlistenMulticastGroup(String multicastAddress) Leaves a multicast group and stops listening for packets send to it.io.smallrye.mutiny.Uni<Void> unlistenMulticastGroup(String multicastAddress, String networkInterface, String source) Leaves a multicast group and stops listening for packets send to it on the given network interface.unlistenMulticastGroupAndAwait(String multicastAddress) Blocking variant ofunlistenMulticastGroup(String).unlistenMulticastGroupAndAwait(String multicastAddress, String networkInterface, String source) Blocking variant ofunlistenMulticastGroup(String,String,String).unlistenMulticastGroupAndForget(String multicastAddress) Variant ofunlistenMulticastGroup(String)that ignores the result of the operation.unlistenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant ofunlistenMulticastGroup(String,String,String)that ignores the result of the operation.
-
Field Details
-
__TYPE_ARG
-
-
Constructor Details
-
DatagramSocket
public DatagramSocket(io.vertx.core.datagram.DatagramSocket delegate) -
DatagramSocket
-
-
Method Details
-
getDelegate
public io.vertx.core.datagram.DatagramSocket getDelegate()- Specified by:
getDelegatein interfaceMeasured- Specified by:
getDelegatein interfaceio.smallrye.mutiny.vertx.MutinyDelegate- Specified by:
getDelegatein interfaceReadStream<DatagramPacket>- Specified by:
getDelegatein interfaceStreamBase
-
toString
-
equals
-
hashCode
public int hashCode() -
isMetricsEnabled
public boolean isMetricsEnabled()- Specified by:
isMetricsEnabledin interfaceMeasured- Returns:
trueif metrics are enabled
-
pipe
- Specified by:
pipein interfaceReadStream<DatagramPacket>- Returns:
- a pipe
-
pipeTo
Pipe thisReadStreamto theWriteStream.Elements emitted by this stream will be written to the write stream until this stream ends or fails.
Once this stream has ended or failed, the write stream will be ended and the
handlerwill be called with the result.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Specified by:
pipeToin interfaceReadStream<DatagramPacket>- Parameters:
dst- the destination write stream- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
pipeToAndAwait
Blocking variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Specified by:
pipeToAndAwaitin interfaceReadStream<DatagramPacket>- Parameters:
dst- the destination write stream- Returns:
- the Void instance produced by the operation.
-
pipeToAndForget
Variant ofReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)that ignores the result of the operation.This method subscribes on the result of
ReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromReadStream.pipeTo(io.vertx.mutiny.core.streams.WriteStream)but you don't need to compose it with other operations.- Specified by:
pipeToAndForgetin interfaceReadStream<DatagramPacket>- Parameters:
dst- the destination write stream
-
send
Write the givenBufferto theSocketAddress. TheHandlerwill be notified once the write completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
packet- theBufferto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
sendAndAwait
Blocking variant ofsend(io.vertx.mutiny.core.buffer.Buffer,int,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
packet- theBufferto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the Void instance produced by the operation.
-
sendAndForget
Variant ofsend(io.vertx.mutiny.core.buffer.Buffer,int,String)that ignores the result of the operation.This method subscribes on the result of
send(io.vertx.mutiny.core.buffer.Buffer,int,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromsend(io.vertx.mutiny.core.buffer.Buffer,int,String)but you don't need to compose it with other operations.- Parameters:
packet- theBufferto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the instance of DatagramSocket to chain method calls.
-
sender
- Parameters:
port- the port of the remote peerhost- the host address of the remote peer- Returns:
- the write stream for sending packets
-
send
Write the givenStringto theSocketAddressusing UTF8 encoding. The will be notified once the write completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
str- theStringto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
sendAndAwait
Blocking variant ofsend(String,int,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
str- theStringto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the Void instance produced by the operation.
-
sendAndForget
Variant ofsend(String,int,String)that ignores the result of the operation.This method subscribes on the result of
send(String,int,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromsend(String,int,String)but you don't need to compose it with other operations.- Parameters:
str- theStringto writeport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the instance of DatagramSocket to chain method calls.
-
send
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> send(String str, String enc, int port, String host) Write the givenStringto theSocketAddressusing the given encoding. The will be notified once the write completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
str- theStringto writeenc- the charset used for encodingport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
sendAndAwait
Blocking variant ofsend(String,String,int,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
str- theStringto writeenc- the charset used for encodingport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the Void instance produced by the operation.
-
sendAndForget
Variant ofsend(String,String,int,String)that ignores the result of the operation.This method subscribes on the result of
send(String,String,int,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromsend(String,String,int,String)but you don't need to compose it with other operations.- Parameters:
str- theStringto writeenc- the charset used for encodingport- the host port of the remote peerhost- the host address of the remote peer- Returns:
- the instance of DatagramSocket to chain method calls.
-
close
Closes theDatagramSocketimplementation asynchronous and notifies the handler once done.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
closeAndAwait
Blocking variant ofclose().This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Returns:
- the Void instance produced by the operation.
-
closeAndForget
public void closeAndForget() -
localAddress
- Returns:
- the socket address
-
listenMulticastGroup
Joins a multicast group and listens for packets send to it. The is notified once the operation completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address of the multicast group to join- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
listenMulticastGroupAndAwait
Blocking variant oflistenMulticastGroup(String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address of the multicast group to join- Returns:
- the Void instance produced by the operation.
-
listenMulticastGroupAndForget
Variant oflistenMulticastGroup(String)that ignores the result of the operation.This method subscribes on the result of
listenMulticastGroup(String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromlistenMulticastGroup(String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address of the multicast group to join- Returns:
- the instance of DatagramSocket to chain method calls.
-
listenMulticastGroup
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> listenMulticastGroup(String multicastAddress, String networkInterface, String source) Joins a multicast group and listens for packets send to it on the given network interface. The is notified once the operation completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
listenMulticastGroupAndAwait
public Void listenMulticastGroupAndAwait(String multicastAddress, String networkInterface, String source) Blocking variant oflistenMulticastGroup(String,String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the Void instance produced by the operation.
-
listenMulticastGroupAndForget
public DatagramSocket listenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant oflistenMulticastGroup(String,String,String)that ignores the result of the operation.This method subscribes on the result of
listenMulticastGroup(String,String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromlistenMulticastGroup(String,String,String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the instance of DatagramSocket to chain method calls.
-
unlistenMulticastGroup
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> unlistenMulticastGroup(String multicastAddress) Leaves a multicast group and stops listening for packets send to it. The is notified once the operation completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address of the multicast group to leave- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
unlistenMulticastGroupAndAwait
Blocking variant ofunlistenMulticastGroup(String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address of the multicast group to leave- Returns:
- the Void instance produced by the operation.
-
unlistenMulticastGroupAndForget
Variant ofunlistenMulticastGroup(String)that ignores the result of the operation.This method subscribes on the result of
unlistenMulticastGroup(String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromunlistenMulticastGroup(String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address of the multicast group to leave- Returns:
- the instance of DatagramSocket to chain method calls.
-
unlistenMulticastGroup
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> unlistenMulticastGroup(String multicastAddress, String networkInterface, String source) Leaves a multicast group and stops listening for packets send to it on the given network interface. The is notified once the operation completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
unlistenMulticastGroupAndAwait
public Void unlistenMulticastGroupAndAwait(String multicastAddress, String networkInterface, String source) Blocking variant ofunlistenMulticastGroup(String,String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the Void instance produced by the operation.
-
unlistenMulticastGroupAndForget
public DatagramSocket unlistenMulticastGroupAndForget(String multicastAddress, String networkInterface, String source) Variant ofunlistenMulticastGroup(String,String,String)that ignores the result of the operation.This method subscribes on the result of
unlistenMulticastGroup(String,String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromunlistenMulticastGroup(String,String,String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address of the multicast group to joinnetworkInterface- the network interface on which to listen for packets.source- the address of the source for which we will listen for multicast packets- Returns:
- the instance of DatagramSocket to chain method calls.
-
blockMulticastGroup
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> blockMulticastGroup(String multicastAddress, String sourceToBlock) Block the given address for the given multicast address and notifies the once the operation completes.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address for which you want to block the source addresssourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
blockMulticastGroupAndAwait
Blocking variant ofblockMulticastGroup(String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address for which you want to block the source addresssourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the Void instance produced by the operation.
-
blockMulticastGroupAndForget
Variant ofblockMulticastGroup(String,String)that ignores the result of the operation.This method subscribes on the result of
blockMulticastGroup(String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromblockMulticastGroup(String,String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address for which you want to block the source addresssourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the instance of DatagramSocket to chain method calls.
-
blockMulticastGroup
@CheckReturnValue public io.smallrye.mutiny.Uni<Void> 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.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
multicastAddress- the address for which you want to block the source addressnetworkInterface- the network interface on which the blocking should occur.sourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
blockMulticastGroupAndAwait
public Void blockMulticastGroupAndAwait(String multicastAddress, String networkInterface, String sourceToBlock) Blocking variant ofblockMulticastGroup(String,String,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
multicastAddress- the address for which you want to block the source addressnetworkInterface- the network interface on which the blocking should occur.sourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the Void instance produced by the operation.
-
blockMulticastGroupAndForget
public DatagramSocket blockMulticastGroupAndForget(String multicastAddress, String networkInterface, String sourceToBlock) Variant ofblockMulticastGroup(String,String,String)that ignores the result of the operation.This method subscribes on the result of
blockMulticastGroup(String,String,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromblockMulticastGroup(String,String,String)but you don't need to compose it with other operations.- Parameters:
multicastAddress- the address for which you want to block the source addressnetworkInterface- the network interface on which the blocking should occur.sourceToBlock- the source address which should be blocked. You will not receive an multicast packets for it anymore.- Returns:
- the instance of DatagramSocket to chain method calls.
-
listen
Start listening on the given port and host. The handler will be called when the socket is listening.Unlike the bare Vert.x variant, this method returns a
Uni. Don't forget to subscribe on it to trigger the operation.- Parameters:
port- the port to listen onhost- the host to listen on- Returns:
- the
unifiring the result of the operation when completed, or a failure if the operation failed.
-
listenAndAwait
Blocking variant oflisten(int,String).This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).
- Parameters:
port- the port to listen onhost- the host to listen on- Returns:
- the DatagramSocket instance produced by the operation.
-
listenAndForget
Variant oflisten(int,String)that ignores the result of the operation.This method subscribes on the result of
listen(int,String), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation fromlisten(int,String)but you don't need to compose it with other operations.- Parameters:
port- the port to listen onhost- the host to listen on- Returns:
- the instance of DatagramSocket to chain method calls.
-
pause
Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhere- Specified by:
pausein interfaceReadStream<DatagramPacket>- Returns:
- the instance of DatagramSocket to chain method calls.
-
resume
Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhere- Specified by:
resumein interfaceReadStream<DatagramPacket>- Returns:
- the instance of DatagramSocket to chain method calls.
-
fetch
Deprecated.no replacement for back-pressure, instead ignore the packet or buffer it somewhere- Specified by:
fetchin interfaceReadStream<DatagramPacket>- Parameters:
amount-- Returns:
- the instance of DatagramSocket to chain method calls.
-
endHandler
Deprecated.removed in Vert.x 5- Specified by:
endHandlerin interfaceReadStream<DatagramPacket>- Parameters:
endHandler-- Returns:
-
handler
- Specified by:
handlerin interfaceReadStream<DatagramPacket>- Parameters:
handler-- Returns:
-
exceptionHandler
- Specified by:
exceptionHandlerin interfaceReadStream<DatagramPacket>- Specified by:
exceptionHandlerin interfaceStreamBase- Parameters:
handler- the exception handler- Returns:
-
toMulti
- Specified by:
toMultiin interfaceReadStream<DatagramPacket>
-
toBlockingIterable
-
toBlockingStream
-
newInstance
-