-
Notifications
You must be signed in to change notification settings - Fork 5
PDUProcessorInterface
huggins edited this page May 10, 2023
·
1 revision
The PRU Processor Interface is used to notify all PDUProcessors when a new UDP Packet is received.
interface PDUProcessorInterface
None
Access | Return | Name | Description | |
---|---|---|---|---|
Public | void | OnUDPPacketReceived(byte[] bytes, UDPReceiverMulti.UDPReceiverMulti udpReceiverMulti) | Called when a new UDP packet is received. |
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. |