如果信号已经发生,我如何观察信号并立即接收到“下一个”事件?
How do I observe a signal and immediately receive a `next` event if it has already occured?
我正在尝试包装一个 API 调用,该调用在网络请求后初始化一个对象。我不希望每个新观察者都发生网络请求,所以据我所知,我不应该使用 SignalProducer
。但是,通过使用单个 Signal
,只有第一次使用它会收到 next
事件,而任何较新的订阅者都不会收到当前值。我应该怎么做?我可能在使用 RAC 时做了一些根本性的错误。
extension SparkDevice {
static func createMainDeviceSignal() -> Signal<SparkDevice, NSError> {
return Signal {
sink in
SparkCloud.sharedInstance().getDevices { (sparkDevices: [AnyObject]!, error: NSError!) -> Void in
if let error = error {
sink.sendFailed(error)
}
else {
if let devices = sparkDevices as? [SparkDevice] {
if devices.count > 0 {
sink.sendNext(devices[0])
}
}
}
}
return nil
}
}
}
class DeviceAccess {
let deviceSignal: Signal<SparkDevice, NSError>
init() {
self.deviceSignal = SparkDevice.createMainDeviceSignal()
}
}
我考虑过使用 MutableProperty
,但这似乎需要默认值 属性,这似乎没有意义。
我应该怎么做?
您需要的是多播。然而,ReactiveCocoa
3/4 并没有提供一种简单的方法来做到这一点(与 Rx 相反),因为它们通常会导致大量的复杂性。
有时确实有必要,如您的示例所示,并且可以使用 PropertyType
.
轻松实现
我首先创建发出请求的冷信号。那必须是 SignalProducer
:
private func createMainDeviceSignalProducer() -> SignalProducer<SparkDevice, NSError> {
return SignalProducer { observer, _ in
....
}
}
如果您按原样公开它,每次 start
ed 时都会产生副作用。要 multicast
这些值,您可以将其包装在 属性 中并改为公开 property
的 producer
:
public final class DeviceAccess {
public let deviceProducer: SignalProducer<SparkDevice, NoError>
private let deviceProperty: AnyProperty<SparkDevice?>
init() {
self.deviceProperty = AnyProperty(
initialValue: nil, // we can use `nil` to mean "value isn't ready yet"
producer: SparkDevice.createMainDeviceSignal()
.map(Optional.init) // we need to wrap values into `Optional` because that's the type of the property
.flatMapError { error in
fatalError("Error... \(error)") // you'd probably want better error handling
return .empty // ignoring errors, but you probably want something better.
}
)
self.deviceProducer = deviceProperty
.producer // get the property producer
.ignoreNil() // ignore the initial value
}
}
现在 DeviceAccess.deviceProducer
将重放底层生产者发出的值,而不是重复副作用。但请注意,它不是 lazy:基础 SignalProducer
将立即启动。
我正在尝试包装一个 API 调用,该调用在网络请求后初始化一个对象。我不希望每个新观察者都发生网络请求,所以据我所知,我不应该使用 SignalProducer
。但是,通过使用单个 Signal
,只有第一次使用它会收到 next
事件,而任何较新的订阅者都不会收到当前值。我应该怎么做?我可能在使用 RAC 时做了一些根本性的错误。
extension SparkDevice {
static func createMainDeviceSignal() -> Signal<SparkDevice, NSError> {
return Signal {
sink in
SparkCloud.sharedInstance().getDevices { (sparkDevices: [AnyObject]!, error: NSError!) -> Void in
if let error = error {
sink.sendFailed(error)
}
else {
if let devices = sparkDevices as? [SparkDevice] {
if devices.count > 0 {
sink.sendNext(devices[0])
}
}
}
}
return nil
}
}
}
class DeviceAccess {
let deviceSignal: Signal<SparkDevice, NSError>
init() {
self.deviceSignal = SparkDevice.createMainDeviceSignal()
}
}
我考虑过使用 MutableProperty
,但这似乎需要默认值 属性,这似乎没有意义。
我应该怎么做?
您需要的是多播。然而,ReactiveCocoa
3/4 并没有提供一种简单的方法来做到这一点(与 Rx 相反),因为它们通常会导致大量的复杂性。
有时确实有必要,如您的示例所示,并且可以使用 PropertyType
.
我首先创建发出请求的冷信号。那必须是 SignalProducer
:
private func createMainDeviceSignalProducer() -> SignalProducer<SparkDevice, NSError> {
return SignalProducer { observer, _ in
....
}
}
如果您按原样公开它,每次 start
ed 时都会产生副作用。要 multicast
这些值,您可以将其包装在 属性 中并改为公开 property
的 producer
:
public final class DeviceAccess {
public let deviceProducer: SignalProducer<SparkDevice, NoError>
private let deviceProperty: AnyProperty<SparkDevice?>
init() {
self.deviceProperty = AnyProperty(
initialValue: nil, // we can use `nil` to mean "value isn't ready yet"
producer: SparkDevice.createMainDeviceSignal()
.map(Optional.init) // we need to wrap values into `Optional` because that's the type of the property
.flatMapError { error in
fatalError("Error... \(error)") // you'd probably want better error handling
return .empty // ignoring errors, but you probably want something better.
}
)
self.deviceProducer = deviceProperty
.producer // get the property producer
.ignoreNil() // ignore the initial value
}
}
现在 DeviceAccess.deviceProducer
将重放底层生产者发出的值,而不是重复副作用。但请注意,它不是 lazy:基础 SignalProducer
将立即启动。