Saltar para o conteúdo principal
Versão: 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.

História
ReleaseMudanças
20 R10Classe adicionada

UDPEvent Object

A UDPEvent object is immutable and non-streamable.

As seguintes propriedades estão disponíveis:

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

Descrição

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

.ip

ip : Text

Descrição

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

.port

port : Number

Descrição

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

.type

type : Text

Descrição

The .type property contains the type of the event. Valores possíveis:

  • "data": Indica que os dados foram recebidos.
  • "error": Indicates that an error occurred during the UDPSocket.
  • "terminate": Indicates that the UDPSocket is about to be released.

Veja também

UDPSocket