NotificationEventArgs constructor

NotificationEventArgs(
  1. StreamingSubscription subscription,
  2. Iterable<NotificationEvent> events
)
Initializes a new instance of the The subscription for which notifications have been received. The events that were received.

Implementation

NotificationEventArgs(
    StreamingSubscription subscription, Iterable<NotificationEvent> events) {
  this.Subscription = subscription;
  this.Events = events;
}