init(upstream:other:)
Creates a publisher that ignores elements from the upstream publisher until it receives an element from another publisher.
Declaration
init(upstream: Upstream, other: Other)Parameters
- upstream:
A publisher to drop elements from while waiting for another publisher to emit elements.
- other:
A publisher to monitor for its first emitted element.