IssueNotificationEvents method
Issues the notification events.
The GetStreamingEvents response.
Implementation
/* private */
void IssueNotificationEvents(GetStreamingEventsResponse gseResponse) {
throw NotImplementedException("IssueNotificationEvents");
// for (GetStreamingEventsResults.NotificationGroup events in gseResponse.Results.Notifications)
// {
// StreamingSubscription subscription = null;
//
// lock (this.lockObject)
// {
// // Client can do any good or bad things in the below event handler
// if (this.subscriptions != null && this.subscriptions.containsKey(events.SubscriptionId))
// {
// subscription = this.subscriptions[events.SubscriptionId];
// }
// }
//
// if (subscription != null)
// {
// NotificationEventArgs eventArgs = new NotificationEventArgs(
// subscription,
// events.Events);
//
// if (this.OnNotificationEvent != null)
// {
// this.OnNotificationEvent(this, eventArgs);
// }
// }
// }
}