UDP Socket
An IO class that implements the sending and receiving of UDP packets.
Constructor
Section titled “Constructor”Creates a new UDP socket object instance.
UDP(options)Parameters
Section titled “Parameters”options
An object of properties used to construct the class.
port(optional) - a number specifying the local port to bind to.
address(optional) - A string with the IP address of the network interface to bind to.
multicast(optional) - A string with the IP address of the multicast address to bind to.
timeToLive(optional) - A number from 1 to 255 indicating the multicast time-to-live value. Required if themulticastproperty is set.
onReadable(bytes)(optional): A callback function that is invoked when new data is available, which can be retrieved using thereadmethod. Thebytesargument indicates the number of available bytes to be read.
onWriteable(bytes)(optional): A callback function that is invoked when space has been made available to output additional data via thewritemethod. Thebytesargument indicates the number of bytes that may be written without overflowing the output buffers.
onError()(optional): A callback function that is invoked when an error occurs or the TCP socket disconnects. Once this callback is invoked, the connection is no longer usable.
Exceptions
Section titled “Exceptions”If the constructor requires a resource that is already in use — whether by a script or the native host — an Error exception is thrown.
Instance Properties
Section titled “Instance Properties”Includes properties of the IO Class Pattern. Specific to this class:
format
Section titled “format”Returns the value set by the format property of the options object in the constructor, either "number" or "buffer". Defaults to "buffer".
remoteAddress
Section titled “remoteAddress”A read-only property providing the IP address of the remote endpoint as a string. If the remote address is not available, returns undefined.
remotePort
Section titled “remotePort”A read-only property providing the port number of the remote endpoint as a number. If the remote port is not available, returns undefined.
Instance Methods
Section titled “Instance Methods”Returns data from the remote endpoint.
read()read(byteLength)read(buffer)Parameters
Section titled “Parameters”byteLength
Accepted when the format is a "buffer", the number of bytes to read into the returned Byte Buffer.
buffer
Accepted when the format is a "buffer", a pre-allocated Byte Buffer for the instance to fill.
Return value
Section titled “Return value”undefined if no data is available.
If the format is "number", returns the next available byte as a number (from 0 to 255).
If the format is "buffer", returns Byte Buffer if byteLength is defined, otherwise a number representing the amount of bytes read into the buffer argument.
Transmits data to the remote endpoint.
write(byteValue)write(buffer)Parameters
Section titled “Parameters”byteValue
Accepted when the format is a "number", a byte value to send to the remote endpoint.
buffer
Accepted when the format is a "buffer", a Byte Buffer of data to send to the remote endpoint.
Exceptions
Section titled “Exceptions”If the output buffer cannot accept all the bytes to be written, an exception is thrown.
Examples
Section titled “Examples”The class can be imported from the embedded namespace:
import UDP from "embedded:io/socket/udp";