-
Notifications
You must be signed in to change notification settings - Fork 432
/
Copy pathSignalProducer+SwiftConcurrency.swift
52 lines (50 loc) · 1.64 KB
/
SignalProducer+SwiftConcurrency.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
//
// SignalProducer+SwiftConcurrency.swift
// ReactiveSwift
//
// Created by Marco Cancellieri on 2021-11-11.
// Copyright (c) 2021 GitHub. All rights reserved.
//
#if compiler(>=5.5) && canImport(_Concurrency)
import Foundation
@available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
extension SignalProducer {
public var asyncThrowingStream: AsyncThrowingStream<Value, Swift.Error> {
AsyncThrowingStream<Value, Swift.Error> { continuation in
let disposable = start { event in
switch event {
case .value(let value):
continuation.yield(value)
case .completed, .interrupted:
continuation.finish()
case .failed(let error):
continuation.finish(throwing: error)
}
}
continuation.onTermination = { @Sendable _ in
disposable.dispose()
}
}
}
}
@available(macOS 12, iOS 15, watchOS 8, tvOS 15, *)
extension SignalProducer where Error == Never {
public var asyncStream: AsyncStream<Value> {
AsyncStream<Value> { continuation in
let disposable = start { event in
switch event {
case .value(let value):
continuation.yield(value)
case .completed, .interrupted:
continuation.finish()
case .failed:
fatalError("Never is impossible to construct")
}
}
continuation.onTermination = { @Sendable _ in
disposable.dispose()
}
}
}
}
#endif