.. _timedexecution: ========================== Example: Timed Execution ========================== This example shows the timed execution of one CCA node. Timed execution means, processing of the node is determined by the :ref:`Timed Processing ` strategy. #. At first a new node is defined, which inherits from the CCA base node class (lines 15-25). #. In the main function of this example we create a node and configure it to be timed (line 30-31, see :ref:`Timed Processing `). #. To run the program we need to send a timing signal to the node. We create a :ref:`beat` and assign the node to it (lines 34-35). .. literalinclude:: ../../examples/timedExecution.cpp :language: c++ :emphasize-lines: 15-25,30-31,34-35 :linenos: