Initializes the connector's application-specific component.
Syntax
virtual int init(CxVersion * version) = 0;
Parameters
Return values
An integer that indicates the status of the initialization operation. Typical return values are:
For other return values, see doVerbFor().
Notes
The class library calls the init() method when the connector comes up. Be sure to implement all of the initialization for the connector, such as logging on to an application, in the init() method.
As part of the initialization, the init() method can optionally compare the version of the connector framework with the version that it expects and return success if the versions match, or failure if the connector cannot work with the version of the connector framework.
See also