takeEvent

This method is used by the event loop (within the thread) to make the reactive object process an event. After some preliminary processing, the takeEvent method calls processEvent to consume the event. This is a virtual function and can be overridden.

Visibility
Public
Signature
virtual TakeEventStatus takeEvent(OMEvent* ev);
Parameters
ev

Specifies the event to be processed

Returns

The method returns one of the values defined in the TakeEventStatus enumerated type. You can use these values to determine whether and how to continue with event processing on the reactive object. The possible values are as follows:

Notes

Feedback