T1T4N / AsyncScheduler

An experimental concurrent scheduler for Combine that uses the new Swift concurrency features: async/await and Task

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

AsyncScheduler Swift Platforms

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

Table of Contents

Usage

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

Structure

This is a Swift library meant to be used in reactive codebases that use Combine.

About

An experimental concurrent scheduler for Combine that uses the new Swift concurrency features: async/await and Task

License:MIT License


Languages

Language:Swift 58.0%Language:Ruby 42.0%