...
/Experimenting with Observables
Experimenting with Observables
Let's see some interesting constructors like 'of' for creating observables and operators like 'take', 'delay' for manipulating data.
You’ve only dipped your toes into the massive toolbox Rx provides. Read on to learn about operators beyond map
and takeUntil
. map
has worked for everything so far, but what happens when we throw an asynchronous wrench in the works or tackle multiple operations inside?
Constructors and operators
This section covers the of
constructor and the take
and delay
operators.
They’re included in the first chapter because all three are useful for hands-on experimentation with observables. If you’re not ...