Created
July 9, 2020 12:30
-
-
Save night-fury-rider/3ab3ee28ab00422bc52ed658162bae23 to your computer and use it in GitHub Desktop.
Design Pattern - Observer
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
| const employeeObservable = new Rx.Observable(employeeObserver => { | |
| employeeObserver.next('Yuvraj Patil'); | |
| employeeObserver.next('Ganesh Gaitonde'); | |
| }); | |
| employeeObservable.subscribe(employeeName => { | |
| console.log('Promoted Employee: ', employeeName); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment