Exemplo n.º 1
0
 /// <summary>
 /// Handles the changing of an execution record.
 /// </summary>
 /// <param name="sender">Object that generated the event.</param>
 /// <param name="e">The event argument.</param>
 public void BrokerRowChangeEvent(object sender, ClientMarketData.BrokerRowChangeEvent executionRowChangeEvent)
 {
 }
Exemplo n.º 2
0
 /// <summary>
 /// Handles a broker record being changed from the server.
 /// </summary>
 /// <param name="sender">The object that originated the event.</param>
 /// <param name="rowChangeEventArgs">The event parameters.</param>
 public void BrokerChangedEvent(object sender, ClientMarketData.BrokerRowChangeEvent rowChangeEventArgs)
 {
     // Whenever any record changes, the entire table will be copied.  This is not a high performance table and
     // doesn't need attension to individual records.  Feel free to re-examine this assumption any time.
     CopyBrokers();
 }