Beispiel #1
0
 void fs_FillListEnd(object sender, FillListEventArgs e)
 {
     processFill(FillOriginator.BOOK, FillAction.LIST_END);
 }
Beispiel #2
0
 void fs_FillListStart(object sender, FillListEventArgs e)
 {
     processFill(FillOriginator.BOOK, FillAction.LIST_START);
 }
 /// <summary>
 /// Event notification for fill download beginning for a given gateway
 /// </summary>
 void m_fil_FillListStart(object sender, FillListEventArgs e)
 {
     Console.WriteLine("Begin adding fills from {0}", e.FeedConnectionKey.ToString());
 }
 /// <summary>
 /// Event notification for fill download completion for a given gateway
 /// </summary>
 void m_fil_FillListEnd(object sender, FillListEventArgs e)
 {
     Console.WriteLine("Finished adding fills from {0}", e.FeedConnectionKey.ToString());
 }
 public void fs_FillListStart(object sender, FillListEventArgs e)
 {
     Console.WriteLine("Begin adding fills from {0}", e.FeedConnectionKey.ToString());
 }
Beispiel #6
0
 /// <summary>
 /// Event notification for fill download completion for a given gateway
 /// </summary>
 void m_fs_FillListEnd(object sender, FillListEventArgs e)
 {
     Console.WriteLine("Finished adding fills from {0} count={1}", e.FeedConnectionKey.ToString(), myFills.Count);
 }
 void fs_FillListStart(object sender, FillListEventArgs e)
 {
     //Console.WriteLine("fs_FillListStart");
     //processFill("fs_FillListStart");
 }
 public void fs_FillListEnd(object sender, FillListEventArgs e)
 {
     Console.WriteLine("Finished adding fills from {0}", e.FeedConnectionKey.ToString());
 }
 void ts_FillListEnd(object sender, FillListEventArgs e)
 {
     //Console.WriteLine("FillListEnd");
     //processFill("FillListEnd");
 }
Beispiel #10
0
 /// <summary>
 /// Notification that the gateway has finished downloading a list of fills.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void m_FillSubscription_FillListEnd(object sender, FillListEventArgs e)
 {
     AddItemToList("List End: " + e.FeedConnectionKey.GatewayKey.Name);
 }
Beispiel #11
0
 /// <summary>
 /// Notification that the gateway will begin downloading a list of fills.  This
 /// event is fired for every gateway the authenticated user has access to, regardless
 /// if any fills exist.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void m_FillSubscription_FillListStart(object sender, FillListEventArgs e)
 {
     AddItemToList("List Start: " + e.FeedConnectionKey.GatewayKey.Name);
     AddItemToTree(new TreeNode("List: " + e.FeedConnectionKey.GatewayKey.Name));
 }
 /// <summary>
 /// Notification that the gateway will begin downloading a list of fills.  This
 /// event is fired for every gateway the authenticated user has access to, regardless 
 /// if any fills exist.  
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void m_FillSubscription_FillListStart(object sender, FillListEventArgs e)
 {
     AddItemToList("List Start: " + e.FeedConnectionKey.GatewayKey.Name);
     AddItemToTree(new TreeNode("List: " + e.FeedConnectionKey.GatewayKey.Name));
 }
 /// <summary>
 /// Notification that the gateway has finished downloading a list of fills.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 void m_FillSubscription_FillListEnd(object sender, FillListEventArgs e)
 {
     AddItemToList("List End: " + e.FeedConnectionKey.GatewayKey.Name);
 }