February 2019
Intermediate to advanced
442 pages
11h 46m
English
Publisher has the following interface definition:
public static interface Publisher<T> { public void subscribe(Subscriber<? super T> subscriber); }
Rule number 1.1 says, the total number of onNext signaled by a Publisher to Subscriber must be less than, or equal to, the total number of elements requested by that Subscriber Subscription at all times. There are multiple facets to this definition here. Let’s try to analyze them one by one: