-
Notifications
You must be signed in to change notification settings - Fork 6
PDUProcessorInterface
huggins edited this page Apr 10, 2025
·
2 revisions
The PRU Processor Interface is used to notify all PDUProcessors when a new UDP Packet is received.
interface PDUProcessorInterfaceNone
| 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. |