object Udp
- Source
- Udp.scala
- Alphabetic
- By Inheritance
- Udp
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def bindFlow(localAddress: InetSocketAddress, options: Iterable[SocketOption], system: ActorSystem): Flow[Datagram, Datagram, Future[InetSocketAddress]]
Creates a flow that upon materialization binds to the given
localAddress
.Creates a flow that upon materialization binds to the given
localAddress
. All incoming messages to thelocalAddress
are emitted from the flow. All incoming messages to the flow are sent to the remote address contained in the message.- localAddress
UDP socket address
- options
UDP socket options
- system
the actor system
- def bindFlow(localAddress: InetSocketAddress, options: Iterable[SocketOption])(implicit system: ClassicActorSystemProvider): Flow[Datagram, Datagram, Future[InetSocketAddress]]
Creates a flow that upon materialization binds to the given
localAddress
.Creates a flow that upon materialization binds to the given
localAddress
. All incoming messages to thelocalAddress
are emitted from the flow. All incoming messages to the flow are sent to the remote address contained in the message.- localAddress
UDP socket address
- options
UDP socket options
- system
implicit actor system
- def bindFlow(localAddress: InetSocketAddress, system: ActorSystem): Flow[Datagram, Datagram, Future[InetSocketAddress]]
Creates a flow that upon materialization binds to the given
localAddress
.Creates a flow that upon materialization binds to the given
localAddress
. All incoming messages to thelocalAddress
are emitted from the flow. All incoming messages to the flow are sent to the remote address contained in the message.- localAddress
UDP socket address
- system
the actor system
- def bindFlow(localAddress: InetSocketAddress)(implicit system: ClassicActorSystemProvider): Flow[Datagram, Datagram, Future[InetSocketAddress]]
Creates a flow that upon materialization binds to the given
localAddress
.Creates a flow that upon materialization binds to the given
localAddress
. All incoming messages to thelocalAddress
are emitted from the flow. All incoming messages to the flow are sent to the remote address contained in the message.- localAddress
UDP socket address
- system
implicit actor system
- def sendFlow(options: Iterable[SocketOption], system: ActorSystem): Flow[Datagram, Datagram, NotUsed]
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message. All incoming messages are also emitted from the flow for subsequent processing.
- options
UDP socket options
- system
the actor system
- def sendFlow(options: Iterable[SocketOption])(implicit system: ClassicActorSystemProvider): Flow[Datagram, Datagram, NotUsed]
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message. All incoming messages are also emitted from the flow for subsequent processing.
- options
UDP socket options
- system
implicit actor system
- def sendFlow(system: ActorSystem): Flow[Datagram, Datagram, NotUsed]
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message. All incoming messages are also emitted from the flow for subsequent processing.
- system
the actor system
- def sendFlow()(implicit system: ClassicActorSystemProvider): Flow[Datagram, Datagram, NotUsed]
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a flow that will send all incoming [UdpMessage] messages to the remote address contained in the message. All incoming messages are also emitted from the flow for subsequent processing.
- system
implicit actor system
- def sendSink(options: Iterable[SocketOption], system: ActorSystem): Sink[Datagram, NotUsed]
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
- options
UDP socket options
- system
the actor system
- def sendSink(options: Iterable[SocketOption])(implicit system: ClassicActorSystemProvider): Sink[Datagram, NotUsed]
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
- options
UDP socket options
- system
implicit actor system
- def sendSink(system: ActorSystem): Sink[Datagram, NotUsed]
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
- system
the actor system
- def sendSink()(implicit system: ClassicActorSystemProvider): Sink[Datagram, NotUsed]
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
Creates a sink that will send all incoming [UdpMessage] messages to the remote address contained in the message.
- system
implicit actor system