mirror of
https://github.com/QuantumLeaps/qpcpp.git
synced 2025-01-14 05:42:57 +08:00
12 lines
421 B
C++
12 lines
421 B
C++
void QActive::run(void) {
|
|
do {
|
|
QEvt const *e;
|
|
QACTIVE_GET_(this, e); // wait for an event
|
|
dispatch(e); // dispatch event to the active object's state machine
|
|
QF::gc(e); // check if the event is garbage, and collect it if so
|
|
} while (m_running);
|
|
|
|
unsubscribeAll(); // unsubscribe from all signals
|
|
QF::remove_(this); // remove this object from any subscriptions
|
|
}
|