Observables in angular2

Post on 07-Feb-2017

181 views 0 download

Transcript of Observables in angular2

Observables in Angular2

with RxJS

Observable?

“A set of any size over any amount of

time…”

“… underscore for events”

“the lovechild of an array and a promise”

A: ObservablesQ: ?

How do we handle async with multiple

values?

Promises on steroids…

Composable through operators

filter, map, take, mergeAll, …

Lazy (cold)

Hot

Cancellable

Angular2 uses observables as a

building-block, but you can also create your

own…

Lets see some code

a word on imports…

Thanks@filipbech