UDP Callback Mechanism
- Updated2023-02-21
- 1 minute(s) read
UDP Callback Mechanism
Windows The callback mechanism is event driven. Each thread creates a window to which the system asynchronously posts FD_READ messages when data is available at the port.
RT The system select function polls each channel when the user processes events. If the function finds available data on a port for which the thread has registered a callback, the user's callback is immediately called.
UDP_DATAREADY is the only supported event.