Skip to content

Instantly share code, notes, and snippets.

@GarryBrown
Created June 18, 2020 08:55
Show Gist options
  • Save GarryBrown/e8acb1a0464d650837d5e00aaf0c7d2e to your computer and use it in GitHub Desktop.
Save GarryBrown/e8acb1a0464d650837d5e00aaf0c7d2e to your computer and use it in GitHub Desktop.
protected _next(value: T): void {
this.destination.next(value);
}
protected _error(err: any): void {
this.destination.error(err);
this.unsubscribe();
}
protected _complete(): void {
this.destination.complete();
this.unsubscribe();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment