Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bignerdranch/Deferred
Work with values that haven't been determined yet.
https://github.com/bignerdranch/Deferred
asynchronous-tasks cocoapods futures swift swiftpm
Last synced: 3 months ago
JSON representation
Work with values that haven't been determined yet.
- Host: GitHub
- URL: https://github.com/bignerdranch/Deferred
- Owner: bignerdranch
- License: mit
- Archived: true
- Created: 2014-08-11T15:24:22.000Z (about 10 years ago)
- Default Branch: develop
- Last Pushed: 2022-08-29T04:49:23.000Z (about 2 years ago)
- Last Synced: 2024-04-23T16:08:20.607Z (7 months ago)
- Topics: asynchronous-tasks, cocoapods, futures, swift, swiftpm
- Language: Swift
- Homepage:
- Size: 1.3 MB
- Stars: 420
- Watchers: 64
- Forks: 47
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
- awesome-system-swift - Deferred
README
# Deferred
> **Warning**
>
> Deferred is deprecated in favor of Swift Concurrency. For migration hints, see [Migrating to Swift Concurrency](https://github.com/bignerdranch/Deferred/tree/develop/Documentation/Guide/Migrating%20to%20Swift%20Concurrency.md).Deferred let you work with values that haven't been determined yet, like an array that's coming later (one day!) from a web service call. It was originally inspired by [OCaml's Deferred](https://ocaml.janestreet.com/ocaml-core/111.25.00/doc/async_kernel/#Deferred) library.
Deferred is a "futures library", probably like ones you've already heard about. Where Deferred aims to be different is by providing a small, efficient API that's easily adopted in our many [consulting projects](https://www.bignerdranch.com/work).
| **Vital Statistics** |
|:-------------------------------------------------------------------------------------------------------|
|[![Requires Swift 5.1 or greater](https://img.shields.io/badge/swift-5.1%2B-EF5138.svg)][Swift] |
|[![Under MIT License](https://img.shields.io/badge/license-MIT-blue.svg)][MIT] |
|![Multiplatform](https://img.shields.io/badge/platforms-macOS,_iOS,_watchOS,_tvOS,_Linux-lightgrey.svg) |
|[![Circle CI](https://img.shields.io/circleci/build/gh/bignerdranch/Deferred.svg)][CI] |
|[![CocoaPods](https://img.shields.io/cocoapods/v/BNRDeferred.svg)][CocoaPods] |
|[![Swift Package Manager](https://img.shields.io/badge/swiftpm-supported-orange.svg)][SwiftPM] |[Swift]: https://swift.org
[MIT]: https://github.com/bignerdranch/Deferred/blob/master/LICENSE
[CI]: https://circleci.com/gh/bignerdranch/Deferred
[CocoaPods]: https://cocoapods.org/pods/BNRDeferred
[SwiftPM]: https://github.com/apple/swift-package-manager## Don't Panic
See Deferred's comprehensive programming guide and documentation at the [Deferred Reference](https://bignerdranch.github.io/Deferred/).
If you have a question not answered by the guide or the module comments, please open an issue!
## Need Some Help?
Deferred, as an open source project, is free to use and always will be. [Big Nerd Ranch](https://bignerdranch.com/) offers help for Deferred, Code Audits, and general mobile app design/development services. Email us at [[email protected]](mailto:[email protected]) to get in touch with us for more details.