Open Media Interaction SDK 7.6 Application Blocks Guide

 

The Connector Application Block

Summary: This section presents the design and use of the Connector Application Block.

Design of the Connector Application Block

The Connector Application Block presents a single class, that is, the MILQILBootstrapper class. This class shows how to initialize the OMSDKConnector instance with both QIL and MIL parameters.

Using the Connector Application Block

To connect to the Genesys Framework, the instance parses the arguments passed at the application's creation. The main method shows how to create and launch the bootstrapper.

MILQILBootstrapper bootstrapper = new MILQILBootstrapper();
try {
 // parse startup params
bootstrapper.parseArguments(args);
 // run
 bootstrapper.run();
} catch (MandatoryParamMissingException mpme) {
 //...
}

Top of the page