示例#1
0
 public async Task NotifySingleQuoteChanges(IEnumerable <int> symbolIdsChanged)
 {
     foreach (var id in symbolIdsChanged)
     {
         var notification = new SingleQuoteNotification(id, DateTime.UtcNow);
         await _client.NotifyChanges(notification);
     }
 }