Created
June 18, 2020 08:55
-
-
Save GarryBrown/e8acb1a0464d650837d5e00aaf0c7d2e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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