实例方法
drop(until
drop(untilOutputFrom:)
忽略来自上游发布者的元素,直到它接收到来自第二个发布者的元素。
声明
func drop<P>(untilOutputFrom publisher: P) -> Publishers.DropUntilOutput<Self, P> where P : Publisher, Self.Failure == P.Failure
返回值
发布者从上游发布者中删除元素,直到 other
发布者产生一个值。
参数
publisher
一个发布者来监控它的第一个发出的元素。
详述
使用 Publisher/drop(untilOutputFrom:)
忽略来自上游发布者的元素,直到另一个、第二个发布者交付其第一个元素。该发布者向第二个发布者请求单个值,并且它忽略(丢弃)来自上游发布者的所有元素,直到第二个发布者产生一个值。在第二个发布者生成一个元素后,Publisher/drop(untilOutputFrom:)
取消对第二个发布者的订阅,并允许来自上游发布者的事件通过。
此发布者收到上游发布者的订阅后,会将来自下游的背压请求传递给上游发布者。如果上游发布者在其他发布者生成项目之前对这些请求采取行动,则该发布者会丢弃它从上游发布者接收到的元素。
在下面的示例中,pub1
发布者推迟发布其元素,直到 pub2
发布者交付其第一个元素:
let upstream = PassthroughSubject<Int,Never>()
let second = PassthroughSubject<String,Never>()
cancellable = upstream
.drop(untilOutputFrom: second)
.sink { print("\($0)", terminator: " ") }
upstream.send(1)
upstream.send(2)
second.send("A")
upstream.send(3)
upstream.send(4)
// Prints "3 4"
可用版本
iOS 13.0+, iPadOS 13.0+, macOS 10.15+, Mac Catalyst 13.0+, tvOS 13.0+, watchOS 6.0+
相关用法
- Swift Optional.Publisher debounce(for:scheduler:options:)用法及代码示例
- Swift Optional.Publisher decode(type:decoder:)用法及代码示例
- Swift Optional.Publisher delay(for:tolerance:scheduler:options:)用法及代码示例
- Swift Optional.Publisher reduce(_:_:)用法及代码示例
- Swift Optional.Publisher tryDrop(while:)用法及代码示例
- Swift Optional.Publisher breakpoint(receiveSubscription:receiveOutput:receiveCompletion:)用法及代码示例
- Swift Optional.Publisher mapError(_:)用法及代码示例
- Swift Optional.Publisher catch(_:)用法及代码示例
- Swift Optional.Publisher tryAllSatisfy(_:)用法及代码示例
- Swift Optional.Publisher zip(_:_:_:)用法及代码示例
- Swift Optional.Publisher sink(receiveValue:)用法及代码示例
- Swift Optional.Publisher scan(_:_:)用法及代码示例
- Swift Optional.Publisher throttle(for:scheduler:latest:)用法及代码示例
- Swift Optional.Publisher assertNoFailure(_:file:line:)用法及代码示例
- Swift Optional.Publisher collect(_:)用法及代码示例
- Swift Optional.Publisher combineLatest(_:_:_:_:)用法及代码示例
- Swift Optional.Publisher share()用法及代码示例
- Swift Optional.Publisher merge(with:_:_:)用法及代码示例
- Swift Optional.Publisher map(_:_:)用法及代码示例
- Swift Optional.Publisher assign(to:on:)用法及代码示例
- Swift Optional.Publisher zip(_:_:_:_:)用法及代码示例
- Swift Optional.Publisher output(in:)用法及代码示例
- Swift Optional.Publisher tryReduce(_:_:)用法及代码示例
- Swift Optional.Publisher map(_:_:_:)用法及代码示例
- Swift Optional.Publisher prepend(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Optional.Publisher drop(untilOutputFrom:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。