An experimental concurrent scheduler for Combine that uses the new Swift concurrency features (async/await
, Task
)
Latest release: 18.11.2021 • version 0.1.0
Requirements: iOS 15.0+ • macOS 12.0+ • tvOS 15.0+ • watchOS 8.0+ • Swift 5.1+ / Xcode 13.1+
Swift version | Project version |
---|---|
Swift 5.1 | v0.1.0 |
Tested with swift build --version
: Swift Package Manager - Swift 5.5.0
// swift-tools-version:5.1
dependencies: [
.package(url: "https://github.com/T1T4N/AsyncScheduler.git", from: "0.1.0")
]
Tested with pod --version
: 1.10.0
platform :osx, '12.0'
use_frameworks!
target 'MyApp' do
pod 'AsyncScheduler', :git => "https://github.com/T1T4N/AsyncScheduler.git", :tag => "0.1.0"
end
This is a Swift library meant to be used in reactive codebases that use Combine.