Packages

p

io.vertx.scala.core

datagram

package datagram

Ordering
  1. Alphabetic
Visibility
  1. Public
  2. All

Type Members

  1. class DatagramPacket extends AnyRef

    A received datagram packet (UDP) which contains the data and information about the sender of the data itself.

  2. class DatagramSocket extends ReadStream[DatagramPacket] with Measured

    A datagram socket can be used to send io.vertx.scala.core.datagram.DatagramPacket's to remote datagram servers and receive io.vertx.scala.core.datagram.DatagramPackets .

    A datagram socket can be used to send io.vertx.scala.core.datagram.DatagramPacket's to remote datagram servers and receive io.vertx.scala.core.datagram.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.

  3. class DatagramSocketOptions extends NetworkOptions

    Options used to configure a datagram socket.

Ungrouped