* @brief See if there are any incoming messages waiting to * be dispatched to event handlers and if so process them. * * This call is intended to be used by remote connections that * have shut down the event thread and are taking over event handling directly. * (A common reason is to ensure the callbacks from events are on the main * execution thread of the call
| 1646 | * @return True if processes at least one event |
| 1647 | *************************************************************/ |
| 1648 | bool Kernel::CheckForIncomingEvents() |
| 1649 | { |
| 1650 | return (GetConnection()->ReceiveMessages(true)) ; |
| 1651 | } |
| 1652 | |
| 1653 | /************************************************************* |
| 1654 | * @brief Register for a particular event at the kernel |
nothing calls this directly
no test coverage detected