CombinedUpdates Observable
Rocket.combineLatestUpdates
— FunctioncombineLatestUpdates(sources...; strategy = PushEach())
combineLatestUpdates(sources::S, strategy::G = PushEach()) where { S <: Tuple, U }
combineLatestUpdates
is a more effiecient version of combineLatest(sources) + map_to(sources)
operators chain.
Arguments
sources
: input sourcesstrategy
: optional update strategy for batching new values together
Note: combineLatestUpdates()
completes immediately if sources
are empty.
See also: Subscribable
, subscribe!
, PushEach
, PushEachBut
, PushNew
, PushNewBut
, PushStrategy