Overview

This event offers the process the chance to perform any initialisation that requires knowledge of the number of inputs that will be presented on each set.

Action

  • Validate the structure of the input interface against the parameters of the process.
  • Perform any initialisation that is possible now that the structure of the input interface is known.

Example

C++ Source Code (against 1199)
case EVENT_INIT_PRECONNECT: { // validate number of inputs if (iif.getNumberOfPorts() != N) berr << "unexpected number of inputs"; // processed return C_OK; }