Creating active classes that are not reactive

When you create an active class that is not reactive, you need to activate the event loop.

About this task

To create an active class that is not reactive:

Procedure

  1. Create a class and set its concurrency to active. If the class is active but not reactive, call start() to activate the event loop.
  2. Override the OMThread::execute method, which implements the event loop. If you override a framework method, do not animate the overridden method.

Feedback