Skip to main content
Version: 20 R10 BETA

UDPEvent

The UDPEvent class provides information about events occurring during the lifecycle of a UDP socket. It is generated when a UDPSocket is opened and is utilized in callbacks onData, onError, and onTerminate.

History
ReleaseChanges
20 R10Class added

UDPEvent Object

A UDPEvent object is immutable and non-streamable.

The following properties are available:

data : Blob
the data associated with the event
ip : Text
the IP address of the remote machine
port : Number
the port number of the remote machine
type : Text
the type of the event

.data

data : Blob

Description

The .data property contains the data associated with the event. It is only valid for events of type "data".

.ip

ip : Text

Description

The .ip property contains the IP address of the remote machine.

.port

port : Number

Description

The .port property contains the port number of the remote machine.

.type

type : Text

Description

The .type property contains the type of the event. Possible values are:

  • "data": Indicates that data has been received.
  • "error": Indicates that an error occurred during the UDPSocket.
  • "terminate": Indicates that the UDPSocket is about to be released.

See also

UDPSocket