import { IEventSubscription } from './IEventSource'; export class EventSubscriptionCollection { private readonly subscriptions = new Array(); public register(...subscriptions: IEventSubscription[]) { this.subscriptions.push(...subscriptions); } public unsubscribeAll() { this.subscriptions.forEach((listener) => listener.unsubscribe()); this.subscriptions.splice(0, this.subscriptions.length); } }