forwardProgramming Guide   Table of ContentSystem Requirementsforward
Getting Started

All Handler classes are located in the OnixS.CmeMdHandler namespace.

The recommended process for using Handler is as follows:

  1. (Optional) Configure Handler properties that are common for all Handler instances using the static properties of the Handler class.
  2. Create the Handler object.
  3. Configure Handler properties that are specific to the created instance.
  4. Subscribe to the relevant Handler events.
  5. Start Handler using the Start() method.
  6. Process the received market data that are reported via Handler events arguments.
  7. Stop Handler using the Stop() method.
See Also