June 2018
Intermediate to advanced
348 pages
8h 45m
English
These Operators will help a developer to create various kind of Observables,from the input data. We have already demonstrated the use of create, from, interval, and range Operators in our example code. Consult those examples and the RxCpp documentation to learn more about them. A table containing some of the Operators are given below :
|
Observables |
Description |
|
create |
Create an observable by calling the Observer method programmatically |
|
defer |
Create a fresh Observable for each Observer/Subscriber |
|
empty |
Create an Observable that does not emit anything (emits only on_completed) |
|
from |
Create an Observable based on the parameters (Polymorphic) |
|
interval |
Create an Observable that emits a sequence ... |