Overview

This event is fired once all processes are fully connected. This implies that all data objects in the system have been created, and therefore that the base rate has been calculated. Therefore, the process can now access all timing data, if necessary.

Action

  • Use the values in time to calculate any temporally-dependent parameters. For example, use time->sampleRate to calculate decay multipliers from decay periods.
  • Perform any initialisation that is possible now that all input ports have data on them.

Example

C++ Source Code (against 1199)
case EVENT_INIT_POSTCONNECT: { // TODO // ok return C_OK; }