gpt4 book ai didi

swift - 如何将组合中的错误类型从“从不”更改为“错误”?

转载 作者:行者123 更新时间:2023-12-02 19:38:31 25 4
gpt4 key购买 nike

notificationCenterPublisher = NotificationCenter.default
.publisher(for: .NSManagedObjectContextObjectsDidChange, object: context)
.map { (notification) -> (CoreDataContextObserverState) in
self.handleContextObjectDidChangeNotification(notification: notification)
}
.eraseToAnyPublisher()

我有方法handleContextObjectDidChangeNotification 进行映射。

现在 notificationCenterPublisher 的类型为 AnyPublisher<CoreDataContextObserverState, Never>

但我想做到 AnyPublisher<CoreDataContextObserverState, Error>并让handleContextObjectDidChangeNotification有某种方式指示发生了错误。

我该怎么做?

最佳答案

您始终可以使用 setFailureType(to:) 更改 Publisher 的故障类型当失败类型为 Never 时:

notificationCenterPublisher = NotificationCenter.default
.publisher(for: .NSManagedObjectContextObjectsDidChange, object: context)
.map { (notification) -> (CoreDataContextObserverState) in
self.handleContextObjectDidChangeNotification(notification: notification)
}
.setFailureType(to: Error.self) <------------------- add this
.eraseToAnyPublisher()

您可以让您的 handle 方法抛出错误,并使用 tryMap 将其转变为发布者失败。 :

notificationCenterPublisher = NotificationCenter.default
.publisher(for: .NSManagedObjectContextObjectsDidChange, object: context)
.tryMap { try self.handleContextObjectDidChangeNotification($0) }
// ^^^^^^ ^^^
.eraseToAnyPublisher()

这还会将发布者的失败类型更改为错误

关于swift - 如何将组合中的错误类型从“从不”更改为“错误”?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60689807/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com