February 2018
Intermediate to advanced
552 pages
13h 46m
English
It is the Observable interface that implements the Reactive pattern. It has the subscribe() method to subscribe the Observer or Subscriber to send items and notifications to them:
observable.subscribe(observer) // To subscribe an Observer observable.subscribe(subscriber) // To subscribe an Subscriber
An Observable[T] instance is responsible for accepting all subscriptions and notifying all observers and subscribers for that item. The subscribe() method does the following:
Read now
Unlock full access