Skip to content

PDUProcessorInterface

huggins edited this page May 10, 2023 · 1 revision

PDU Processor Interface

The PRU Processor Interface is used to notify all PDUProcessors when a new UDP Packet is received.

interface PDUProcessorInterface

Back to Top


Members

None

Back to Top


Functions

Access Return Name Description
Public void OnUDPPacketReceived(byte[] bytes, UDPReceiverMulti.UDPReceiverMulti udpReceiverMulti) Called when a new UDP packet is received.

Back to Top


Details

OnUDPPacketReceived

void OnUDPPacketReceived
(
    byte[] bytes,
    UDPReceiverMulti.UDPReceiverMulti udpReceiverMulti
)

Called when a new UDP packet is received.

Parameter Description
bytes The contents of the UDP packet represented as a byte array.
udpReceiverMulti The UDPReceiveMulti that received the UDP packet.

Back to Top


Clone this wiki locally