backProgramming GuideTable of ContentSystem Requirementsforward

All Handler classes are located in the Onixs.CmeFastHandler namespace.

The recommended process for using the Handler is as follows:

  1. (Optional) Configure the Handler properties that are common for all Handler instances using the static properties of the Handler class.
  2. Create the Handler object.
  3. Configure the Handler properties that are specific to the created instance (e.g. set the CME Market Data Feed Channel ID).
  4. Subscribe to the relevant Handler events.
  5. Start the Handler using the Start()()()() method.
  6. Process the received market data that is reported via Handler events arguments.
  7. Stop the Handler using the Stop()()()() method.

See Also