Packages

object Udp

Source
Udp.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Udp
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. 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 the localAddress 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

  2. 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 the localAddress 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

  3. 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 the localAddress 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

  4. 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 the localAddress 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

  5. 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

  6. 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

  7. 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

  8. 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

  9. 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

  10. 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

  11. 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

  12. 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