Skip to content

Instantly share code, notes, and snippets.

@ngohungphuc
Created August 2, 2019 08:42
Show Gist options
  • Save ngohungphuc/5f22304df908651bb868bfb756d50bf8 to your computer and use it in GitHub Desktop.
Save ngohungphuc/5f22304df908651bb868bfb756d50bf8 to your computer and use it in GitHub Desktop.
private subscription$: Subscription;
public ngOnInit(): void {
this.subscription$ = this.messageervice
.getData()
.subscribe(data => { console.log(data); })
}
public ngOnDestroy(): void {
this.subscription$.unsubscribe();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment