CombinedUpdates Observable

Rocket.combineLatestUpdatesFunction
combineLatestUpdates(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 sources
  • strategy: 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

source