实例方法
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 Result.Publisher drop(while:)用法及代码示例
- Swift Result.Publisher dropFirst(_:)用法及代码示例
- Swift Result.Publisher debounce(for:scheduler:options:)用法及代码示例
- Swift Result.Publisher decode(type:decoder:)用法及代码示例
- Swift Result.Publisher delay(for:tolerance:scheduler:options:)用法及代码示例
- Swift Result.Publisher zip(_:_:_:)用法及代码示例
- Swift Result.Publisher tryLast(where:)用法及代码示例
- Swift Result.Publisher sink(receiveCompletion:receiveValue:)用法及代码示例
- Swift Result.Publisher merge(with:_:_:)用法及代码示例
- Swift Result.Publisher tryCompactMap(_:)用法及代码示例
- Swift Result.Publisher print(_:to:)用法及代码示例
- Swift Result.Publisher sink(receiveValue:)用法及代码示例
- Swift Result.Publisher eraseToAnyPublisher()用法及代码示例
- Swift Result.Publisher setFailureType(to:)用法及代码示例
- Swift Result.Publisher first(where:)用法及代码示例
- Swift Result.Publisher output(at:)用法及代码示例
- Swift Result.Publisher tryCatch(_:)用法及代码示例
- Swift Result.Publisher merge(with:_:_:_:_:_:_:)用法及代码示例
- Swift Result.Publisher flatMap(maxPublishers:_:)用法及代码示例
- Swift Result.Publisher map(_:_:_:)用法及代码示例
- Swift Result.Publisher catch(_:)用法及代码示例
- Swift Result.Publisher prefix(_:)用法及代码示例
- Swift Result.Publisher timeout(_:scheduler:options:customError:)用法及代码示例
- Swift Result.Publisher merge(with:_:)用法及代码示例
- Swift Result.Publisher map(_:)用法及代码示例
注:本文由纯净天空筛选整理自apple.com大神的英文原创作品 Result.Publisher drop(untilOutputFrom:)。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。