Subscribes to an additional publisher and invokes a closure upon receiving output from either publisher.
SDKs
- iOS 13.0+
- macOS 10.15+
- Mac Catalyst 13.0+
- tvOS 13.0+
- watchOS 6.0+
- Xcode 11.0+
Framework
- Combine
Declaration
func combineLatest<P, T>(_ other: P, _ transform: @escaping ((A.Output, B.Output, C.Output, D.Output), P.Output) -> T) -> Publishers.Map<Publishers.Combine Latest<Publishers.Zip4<A, B, C, D>, P>, T> where P : Publisher, Self.Failure == P.Failure
Parameters
other
Another publisher to combine with this one.
transform
A closure that receives the most recent value from each publisher and returns a new value to publish.
Return Value
A publisher that receives and combines elements from this and another publisher.
Discussion
The combined publisher passes through any requests to all upstream publishers. However, it still obeys the demand-fulfilling rule of only sending the request amount downstream. If the demand isn’t unlimited
, it drops values from upstream publishers. It implements this by using a buffer size of 1 for each upstream, and holds the most recent value in each buffer. All upstream publishers need to complete normally for this publisher to complete. If any of the combined publishers terminates with a failure, this publisher also fails. If an upstream publisher never publishes a value, this publisher neither produces any elements nor signals that publishing has completed.