Core Components
-
A
Promise
is a functional abstraction around a failable asynchronous operation.See
Thenable
Declaration
Swift
public final class Promise<T> : Thenable, CatchMixin
extension Promise: CustomStringConvertible
extension Promise: CustomDebugStringConvertible
-
Thenable represents an asynchronous operation that can be chained.
See moreDeclaration
Swift
public protocol Thenable : AnyObject
-
An object for resolving promises
See moreDeclaration
Swift
public final class Resolver<T>