From e141ba9815123f28aef2fcec5bacdfb699500533 Mon Sep 17 00:00:00 2001
From: Lily Ballard Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) Tomorrowland 1.3.0 Docs (100% documented) Tomorrowland 1.4.0 Docs (100% documented) The returned Declaration
diff --git a/docs/Enums/NoError.html b/docs/Enums/NoError.html
index c370561..effe7e1 100644
--- a/docs/Enums/NoError.html
+++ b/docs/Enums/NoError.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Enums/PromiseCallbackError.html b/docs/Enums/PromiseCallbackError.html
index 1c85117..0f99f32 100644
--- a/docs/Enums/PromiseCallbackError.html
+++ b/docs/Enums/PromiseCallbackError.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Enums/PromiseContext.html b/docs/Enums/PromiseContext.html
index 9e421b7..ca5eeea 100644
--- a/docs/Enums/PromiseContext.html
+++ b/docs/Enums/PromiseContext.html
@@ -14,7 +14,7 @@
Parameters
diff --git a/docs/Enums/PromiseResult.html b/docs/Enums/PromiseResult.html
index d4679b2..16a82a3 100644
--- a/docs/Enums/PromiseResult.html
+++ b/docs/Enums/PromiseResult.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Enums/PromiseTimeoutError.html b/docs/Enums/PromiseTimeoutError.html
index ce579bd..ed7616b 100644
--- a/docs/Enums/PromiseTimeoutError.html
+++ b/docs/Enums/PromiseTimeoutError.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Functions.html b/docs/Functions.html
index 58cd39c..60db2e8 100644
--- a/docs/Functions.html
+++ b/docs/Functions.html
@@ -14,7 +14,7 @@
Return Value
diff --git a/docs/Structs.html b/docs/Structs.html
index 0e39430..250eebf 100644
--- a/docs/Structs.html
+++ b/docs/Structs.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Structs/DelayedPromise.html b/docs/Structs/DelayedPromise.html
index aae5dd9..3e0765a 100644
--- a/docs/Structs/DelayedPromise.html
+++ b/docs/Structs/DelayedPromise.html
@@ -14,7 +14,7 @@
Declaration
diff --git a/docs/Structs/Promise.html b/docs/Structs/Promise.html
index 246c8b3..e2703fa 100644
--- a/docs/Structs/Promise.html
+++ b/docs/Structs/Promise.html
@@ -14,7 +14,7 @@
Return Value
Promise
will always resolve with the same value that its receiver does, but
it won’t affect the timing of any of the receiver’s other observers and it won’t affect
-automatic cancellation propagation behavior.Promise
does nothing.
tap().always(on:token:_:)
behaves the same as tap(on:token:_:)
except it returns a new
Promise
whereas tap(on:token:_:)
returns the receiver and can be inserted into any
@@ -1731,6 +1732,16 @@
Registers a callback that will be invoked when the promise is cancelled.
+Note
+Like tap
, onCancel
does not prevent automatic cancellation propagation if the
+parent has multiple children and all other children have requested cancellation. Unlike
+tap
, requesting cancellation of onCancel
will cancel the parent if the parent has no
+other children. onCancel
‘s behavior differs from the other standard obsrevers here as
+attaching an onCancel
observer to a promise that would otherwise be cancelled should not
+prevent the cancellation.
The intent of this method is to allow you to deduplicate requests for a long-lived resource (such as a network load) without preventing cancellation of the load in the event that no children care about it anymore.
+Important
+Do not give the returned promise directly to callers. Instead always hand back
+a child, such as returned from makeChild
. Otherwise automatic cancellation propagation
+won’t work as expected.
+
+
+ makeChild()
+
+ Returns a promise that adopts the same value as the receiver.
+ +This method is used in order to hand back child promises to callers so that they cannot
+directly request cancellation of a shared parent promise. This is most useful in conjunction
+with propagatingCancellation(on:cancelRequested:)
but could also be used any time a shared
+promise is given to multiple callers.
Swift
+public func makeChild() -> Promise<Value, Error>
+
+ A new promise that will resolve to the same value as the receiver.
+
@@ -3390,7 +3444,7 @@ Return Value
diff --git a/docs/Structs/Promise/Resolver.html b/docs/Structs/Promise/Resolver.html
index e4217c7..ee9f9a4 100644
--- a/docs/Structs/Promise/Resolver.html
+++ b/docs/Structs/Promise/Resolver.html
@@ -14,7 +14,7 @@
- Tomorrowland 1.3.0 Docs (100% documented)
+ Tomorrowland 1.4.0 Docs (100% documented)
@@ -261,8 +261,9 @@ Declaration
Otherwise the receiver will wait until promise
is resolved and resolve to the same
result.
-If the receiver is cancelled, it will also propagate the cancellation to promise
. If
-this is not desired, then either use resolve(with: promise.ignoringCancel())
or
+
If the receiver is cancelled, it will also propagate the cancellation to promise
the
+same way that a child promise does. If this is not desired, then either use
+resolve(with: promise.ignoringCancel())
or
promise.always(on: .immediate, resolver.resolve(with:))
.
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
The returned Promise
will always resolve with the same value that its receiver does, but
it won’t affect the timing of any of the receiver’s other observers and it won’t affect
-automatic cancellation propagation behavior.
Promise
does nothing.
tap().always(on:token:_:)
behaves the same as tap(on:token:_:)
except it returns a new
Promise
whereas tap(on:token:_:)
returns the receiver and can be inserted into any
@@ -1731,6 +1732,16 @@
Registers a callback that will be invoked when the promise is cancelled.
+Note
+Like tap
, onCancel
does not prevent automatic cancellation propagation if the
+parent has multiple children and all other children have requested cancellation. Unlike
+tap
, requesting cancellation of onCancel
will cancel the parent if the parent has no
+other children. onCancel
‘s behavior differs from the other standard obsrevers here as
+attaching an onCancel
observer to a promise that would otherwise be cancelled should not
+prevent the cancellation.
The intent of this method is to allow you to deduplicate requests for a long-lived resource (such as a network load) without preventing cancellation of the load in the event that no children care about it anymore.
+Important
+Do not give the returned promise directly to callers. Instead always hand back
+a child, such as returned from makeChild
. Otherwise automatic cancellation propagation
+won’t work as expected.
+
+
+ makeChild()
+
+ Returns a promise that adopts the same value as the receiver.
+ +This method is used in order to hand back child promises to callers so that they cannot
+directly request cancellation of a shared parent promise. This is most useful in conjunction
+with propagatingCancellation(on:cancelRequested:)
but could also be used any time a shared
+promise is given to multiple callers.
Swift
+public func makeChild() -> Promise<Value, Error>
+
+ A new promise that will resolve to the same value as the receiver.
+
@@ -3390,7 +3444,7 @@ Return Value
diff --git a/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/Structs/Promise/Resolver.html b/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/Structs/Promise/Resolver.html
index e4217c7..ee9f9a4 100644
--- a/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/Structs/Promise/Resolver.html
+++ b/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/Structs/Promise/Resolver.html
@@ -14,7 +14,7 @@
- Tomorrowland 1.3.0 Docs (100% documented)
+ Tomorrowland 1.4.0 Docs (100% documented)
@@ -261,8 +261,9 @@ Declaration
Otherwise the receiver will wait until promise
is resolved and resolve to the same
result.
-If the receiver is cancelled, it will also propagate the cancellation to promise
. If
-this is not desired, then either use resolve(with: promise.ignoringCancel())
or
+
If the receiver is cancelled, it will also propagate the cancellation to promise
the
+same way that a child promise does. If this is not desired, then either use
+resolve(with: promise.ignoringCancel())
or
promise.always(on: .immediate, resolver.resolve(with:))
.
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland 1.3.0 Docs (100% documented)
+Tomorrowland 1.4.0 Docs (100% documented)
Tomorrowland is an implementation of Promises for Swift and Objective-C. A Promise is a wrapper around an -asynchronous task that provides a standard way of subscribing to task resolution as well as chaining promises together.
+Tomorrowland is an implementation of Promises for Swift and Objective-C. A Promise is a wrapper around an asynchronous task that provides a standard way of subscribing to task resolution as well as chaining promises together.
UIApplication.shared.isNetworkActivityIndicatorVisible = true
MyAPI.requestFeed(for: user).then { (feedItems) in
self.refreshUI(with: feedItems)
@@ -138,18 +137,11 @@ Tomorrowland
- It uses atomics internally instead of creating a separate
DispatchQueue
for each promise. This means it’s faster and uses fewer resources.
-- It provides full support for cancellable promises. PromiseKit supports detection of “cancelled” errors but has no way to request cancellation of a promise. Hydra
-supports cancelling a promise, but it can’t actually stop any work being done by the promise unless the promise body itself polls for the cancellation status (so e.g.
-a promise wrapping a network task can’t reasonably cancel the network task). Tomorrowland improves on this by allowing the promise body to observe the
-cancelled state, and allows linking cancellation of a child promise to its parent.
+- It provides full support for cancellable promises. PromiseKit supports detection of “cancelled” errors but has no way to request cancellation of a promise. Hydra supports cancelling a promise, but it can’t actually stop any work being done by the promise unless the promise body itself polls for the cancellation status (so e.g. a promise wrapping a network task can’t reasonably cancel the network task). Tomorrowland improves on this by allowing the promise body to observe the cancelled state, and allows linking cancellation of a child promise to its parent.
- Its Obj-C support makes use of generics for improved type safety and better documentation.
-- Like Hydra but unlike PromiseKit, it provides a way to suppress a registered callback (e.g. because you don’t care about the result anymore and don’t want stale
-data affecting your UI). This is distinct from promise cancellation.
-- Tomorrowland promises are fully generic over the error type, whereas both PromiseKit and Hydra only support using
Error
as the error type. This may result in
-more typing to construct a promise but it allows for much more powerful error handling. Tomorrowland also has some affordances for working with promises that
-use Error
as the error type.
-- Tomorrowland is fully thread-safe. I have no reason to believe PromiseKit isn’t, but (at the time of this writing) there are parts of Hydra that are incorrectly
-implemented in a non-thread-safe manner.
+- Like Hydra but unlike PromiseKit, it provides a way to suppress a registered callback (e.g. because you don’t care about the result anymore and don’t want stale data affecting your UI). This is distinct from promise cancellation.
+- Tomorrowland promises are fully generic over the error type, whereas both PromiseKit and Hydra only support using
Error
as the error type. This may result in more typing to construct a promise but it allows for much more powerful error handling. Tomorrowland also has some affordances for working with promises that use Error
as the error type.
+- Tomorrowland is fully thread-safe. I have no reason to believe PromiseKit isn’t, but (at the time of this writing) there are parts of Hydra that are incorrectly implemented in a non-thread-safe manner.
Installation
Manually
@@ -159,18 +151,15 @@ Carthage
github "lilyball/Tomorrowland" ~> 1.0
-The project file is configured to use Swift 5. The code can be compiled against Swift 4.2 instead, but I’m not aware of any way to instruct Carthage to override the
-swift version during compilation.
+The project file is configured to use Swift 5. The code can be compiled against Swift 4.2 instead, but I’m not aware of any way to instruct Carthage to override the swift version during compilation.
CocoaPods
pod 'Tomorrowland', '~> 1.0'
-The podspec declares support for both Swift 4.2 and Swift 5.0, but selecting the Swift version requires using CoocaPods 1.7.0 or later. When using CocoaPods 1.6
-or earlier the Swift version will default to 5.0.
+The podspec declares support for both Swift 4.2 and Swift 5.0, but selecting the Swift version requires using CoocaPods 1.7.0 or later. When using CocoaPods 1.6 or earlier the Swift version will default to 5.0.
SwiftPM
-Tomorrowland currently relies on a private Obj-C module for its atomics. This arrangement means it is not compatible with Swift Package Manager (as adding
-compatibility would necessitate publicly exposing the private Obj-C module).
+Tomorrowland currently relies on a private Obj-C module for its atomics. This arrangement means it is not compatible with Swift Package Manager (as adding compatibility would necessitate publicly exposing the private Obj-C module).
Usage
Creating Promises
@@ -181,18 +170,11 @@ Creating Promises
})
-The body of this promise runs on the specified PromiseContext
, which in this case is .utility
(which means DispatchQueue.global(qos: .utility)
).
-Unlike callbacks, all created promises must specify a context, so as to avoid accidentally running expensive computations on the main thread. The available contexts
-include .main
, every Dispatch QoS, a specific DispatchQueue
, a specific OperationQueue
, or the value .immediate
which means to run the block
-synchronously. There’s also the special context .auto
, which evaluates to .main
on the main thread and .default
otherwise.
The body of this promise runs on the specified PromiseContext
, which in this case is .utility
(which means DispatchQueue.global(qos: .utility)
). Unlike callbacks, all created promises must specify a context, so as to avoid accidentally running expensive computations on the main thread. The available contexts include .main
, every Dispatch QoS, a specific DispatchQueue
, a specific OperationQueue
, or the value .immediate
which means to run the block synchronously. There’s also the special context .auto
, which evaluates to .main
on the main thread and .default
otherwise.
Note: The .immediate
context can be dangerous to use for callback handlers and should be avoided in most cases. It’s primarily intended for creating
-promises, and whenever it’s used with a callback handler the handler must be prepared to execute on any thread. For callbacks it’s usually only useful for short
-thread-agnostic callbacks, such as an .onRequestCancel
that does nothing more than cancelling a URLSessionTask
.
Note: The .immediate
context can be dangerous to use for callback handlers and should be avoided in most cases. It’s primarily intended for creating promises, and whenever it’s used with a callback handler the handler must be prepared to execute on any thread. For callbacks it’s usually only useful for short thread-agnostic callbacks, such as an .onRequestCancel
that does nothing more than cancelling a URLSessionTask
.
The body of a Promise
receives a “resolver”, which it must use to fulfill, reject, or cancel the promise. If the resolver goes out of scope without being used, the
-promise is automatically cancelled. If the promise’s error type is Error
, the promise body may also throw an error (as seen above), which is then used to reject the
-promise. This resolver can also be used to observe cancellation requests using resolver.onRequestCancel
, as seen here:
The body of a Promise
receives a “resolver”, which it must use to fulfill, reject, or cancel the promise. If the resolver goes out of scope without being used, the promise is automatically cancelled. If the promise’s error type is Error
, the promise body may also throw an error (as seen above), which is then used to reject the promise. This resolver can also be used to observe cancellation requests using resolver.onRequestCancel
, as seen here:
let promise = Promise<Data,Error>(on: .immediate, { (resolver) in
let task = urlSession.dataTask(with: url, completionHandler: { (data, response, error) in
if let data = data {
@@ -210,24 +192,16 @@ Creating Promises
})
-Resolvers also have a convenience method handleCallback()
that is intended to make it easy to wrap framework callbacks in promises. This method returns a
-closure that can be used as a callback directly. It also takes an optional isCancelError
parameter that can be used to indicate when an error represents
-cancellation. For example:
Resolvers also have a convenience method handleCallback()
that is intended to make it easy to wrap framework callbacks in promises. This method returns a closure that can be used as a callback directly. It also takes an optional isCancelError
parameter that can be used to indicate when an error represents cancellation. For example:
geocoder.reverseGeocodeLocation(location, completionHandler: resolver.handleCallback(isCancelError: { CLError.geocodeCanceled ~= $0 }))
Once you have a promise, you can register callbacks to be executed when the promise is resolved. Most callback methods require a context, but for some of them
-(then
, catch
, always
, and tryThen
) you can omit the context and it will default to .auto
, which means the main thread if the callback is registered from the
-main thread, otherwise the dispatch queue with QoS .default
.
Once you have a promise, you can register callbacks to be executed when the promise is resolved. Most callback methods require a context, but for some of them (then
, catch
, always
, and tryThen
) you can omit the context and it will default to .auto
, which means the main thread if the callback is registered from the main thread, otherwise the dispatch queue with QoS .default
.
When you register a callback, the method also returns a Promise
. All callback registration methods return a new Promise
even if the callback doesn’t affect the
-value of the promise. The reason for this is so chained callbacks always guarantee that the previous callback finished executing before the new one starts, even
-when using concurrent contexts (e.g. .utility
), and so cancelling the returned promise doesn’t cancel the original one if any other callbacks were registered on
-it.
When you register a callback, the method also returns a Promise
. All callback registration methods return a new Promise
even if the callback doesn’t affect the value of the promise. The reason for this is so chained callbacks always guarantee that the previous callback finished executing before the new one starts, even when using concurrent contexts (e.g. .utility
), and so cancelling the returned promise doesn’t cancel the original one if any other callbacks were registered on it.
Most callback registration methods also have versions that allow you to return a Promise
from your callback. In this event, the resulting Promise
waits for the
-promise you returned to resolve before adopting its value. This allows for easy composition of promises.
Most callback registration methods also have versions that allow you to return a Promise
from your callback. In this event, the resulting Promise
waits for the promise you returned to resolve before adopting its value. This allows for easy composition of promises.
showLoadingIndicator()
fetchUserCredentials().flatMap(on: .default) { (credentials) in
// This returns a new promise
@@ -247,25 +221,14 @@ Using Promises
}
-When composing callbacks that return promises, you may run into issues with incompatible error types. There are convenience methods for working with promises
-whose errors are compatible with Error
, but they don’t cover all cases. If you find yourself hitting one of these cases, any Promise
whose error type conforms to
-Error
has a property .upcast
that will convert that error into an Error
to allow for easier composition of promises.
When composing callbacks that return promises, you may run into issues with incompatible error types. There are convenience methods for working with promises whose errors are compatible with Error
, but they don’t cover all cases. If you find yourself hitting one of these cases, any Promise
whose error type conforms to Error
has a property .upcast
that will convert that error into an Error
to allow for easier composition of promises.
Tomorrowland also offers a typealias StdPromise<Value>
as shorthand for Promise<T,Error>
. This is frequently useful to avoid having to repeat the types,
-such as with StdPromise(fulfilled: someValue)
instead of Promise<SomeValue,Error>(fulfilled: someValue)
.
Tomorrowland also offers a typealias StdPromise<Value>
as shorthand for Promise<T,Error>
. This is frequently useful to avoid having to repeat the types, such as with StdPromise(fulfilled: someValue)
instead of Promise<SomeValue,Error>(fulfilled: someValue)
.
All promises expose a method .requestCancel()
. It is named such because this doesn’t actually guarantee that the promise will be cancelled. If the promise
-supports cancellation, this method will trigger a callback that the promise can use to cancel its work. But promises that don’t support cancellation will ignore this
-and will eventually fulfill or reject as normal. Naturally, requesting cancellation of a promise that has already been resolved does nothing, even if the callbacks have
-not yet been invoked.
In order to handle the issue of a promise being resolved after you no longer care about it, there is a separate mechanism called a PromiseInvalidationToken
-that can be used to suppress callbacks. All callback methods have an optional token
parameter that accepts a PromiseInvalidationToken
. If provided,
-calling invalidate()
on the token prior to the callback being executed guarantees the callback will not fire. If the callback returns a value that is required in order
-to resolve the Promise
returned from the callback registration method, the resulting Promise
is cancelled instead. PromiseInvalidationToken
s can be used
-with multiple callbacks at once, and a single token can be re-used as much as desired. It is recommended that you take advantage of both invalidation tokens and
-cancellation. This may look like
All promises expose a method .requestCancel()
. It is named such because this doesn’t actually guarantee that the promise will be cancelled. If the promise supports cancellation, this method will trigger a callback that the promise can use to cancel its work. But promises that don’t support cancellation will ignore this and will eventually fulfill or reject as normal. Naturally, requesting cancellation of a promise that has already been resolved does nothing, even if the callbacks have not yet been invoked.
In order to handle the issue of a promise being resolved after you no longer care about it, there is a separate mechanism called a PromiseInvalidationToken
that can be used to suppress callbacks. All callback methods have an optional token
parameter that accepts a PromiseInvalidationToken
. If provided, calling invalidate()
on the token prior to the callback being executed guarantees the callback will not fire. If the callback returns a value that is required in order to resolve the Promise
returned from the callback registration method, the resulting Promise
is cancelled instead. PromiseInvalidationToken
s can be used with multiple callbacks at once, and a single token can be re-used as much as desired. It is recommended that you take advantage of both invalidation tokens and cancellation. This may look like
class URLImageView: UIImageView {
private var promise: StdPromise<Void>?
private let invalidationToken = PromiseInvalidationToken()
@@ -294,19 +257,11 @@ Cancelling and Invalidation
}
-PromiseInvalidationToken
also has a method .requestCancelOnInvalidate(_:)
that can register any number of Promise
s to be automatically
-requested to cancel (using .requestCancel()
) the next time the token is invalidated. Promise
also has the same method (except it takes a token as the
-argument) as a convenience for calling .requestCancelOnInvalidate(_:)
on the token. This can be used to terminate a promise chain without ever assigning
-the promise to a local variable. PromiseInvalidationToken
also has a method .cancelWithoutInvalidating()
which cancels any associated promises
-without invalidating the token.
PromiseInvalidationToken
also has a method .requestCancelOnInvalidate(_:)
that can register any number of Promise
s to be automatically requested to cancel (using .requestCancel()
) the next time the token is invalidated. Promise
also has the same method (except it takes a token as the argument) as a convenience for calling .requestCancelOnInvalidate(_:)
on the token. This can be used to terminate a promise chain without ever assigning the promise to a local variable. PromiseInvalidationToken
also has a method .cancelWithoutInvalidating()
which cancels any associated promises without invalidating the token.
By default PromiseInvalidationToken
s will invalidate themselves automatically when deinitialized. This is primarily useful in conjunction with
-requestCancelOnInvalidate(_:)
as it allows you to automatically cancel your promises when object that owns the token deinits. This behavior can be
-disabled with an optional parameter to init
.
By default PromiseInvalidationToken
s will invalidate themselves automatically when deinitialized. This is primarily useful in conjunction with requestCancelOnInvalidate(_:)
as it allows you to automatically cancel your promises when object that owns the token deinits. This behavior can be disabled with an optional parameter to init
.
Promise
also has a convenience method requestCancelOnDeinit(_:)
which can be used to request the Promise
to be cancelled when a given object
-deinits. This is equivalent to adding a PromiseInvalidationToken
property to the object (configured to invalidate on deinit) and requesting cancellation when
-the token invalidates, but can be used if the token would otherwise not be explicitly invalidated.
Promise
also has a convenience method requestCancelOnDeinit(_:)
which can be used to request the Promise
to be cancelled when a given object deinits. This is equivalent to adding a PromiseInvalidationToken
property to the object (configured to invalidate on deinit) and requesting cancellation when the token invalidates, but can be used if the token would otherwise not be explicitly invalidated.
Using these methods, the above loadImage(from:)
can be rewritten as the following including cancellation:
class URLImageView: UIImageView {
@@ -336,17 +291,10 @@ Cancelling and Invalidation
PromiseInvalidationToken
s can be arranged in a tree such that invalidating one token will cascade this invalidation down to other tokens. This is
-accomplished by calling childToken.chainInvalidation(from: parentToken)
. Practically speaking this is no different than just manually invalidating each
-child token yourself after invalidating the parent token, but it’s provided as a convenience to make it easy to have fine-grained invalidation control while also having
-a simple way to bulk-invalidate tokens. For example, you might have separate tokens for different view controllers that all chain invalidation from a single token that
-gets invalidated when the user logs out, thus automatically invalidating all your user-dependent network requests at once while still allowing each view controller the
-ability to invalidate just its own requests independently.
PromiseInvalidationToken
s can be arranged in a tree such that invalidating one token will cascade this invalidation down to other tokens. This is accomplished by calling childToken.chainInvalidation(from: parentToken)
. Practically speaking this is no different than just manually invalidating each child token yourself after invalidating the parent token, but it’s provided as a convenience to make it easy to have fine-grained invalidation control while also having a simple way to bulk-invalidate tokens. For example, you might have separate tokens for different view controllers that all chain invalidation from a single token that gets invalidated when the user logs out, thus automatically invalidating all your user-dependent network requests at once while still allowing each view controller the ability to invalidate just its own requests independently.
TokenPromise
In order to avoid the repetition of passing a PromiseInvalidationToken
to multiple Promise
methods as well as cancelling the resulting promise, a type
-TokenPromise
exists that handles this for you. You can create a TokenPromise
with the Promise.withToken(_:)
method. This allows you to take code like
-the following:
In order to avoid the repetition of passing a PromiseInvalidationToken
to multiple Promise
methods as well as cancelling the resulting promise, a type TokenPromise
exists that handles this for you. You can create a TokenPromise
with the Promise.withToken(_:)
method. This allows you to take code like the following:
func loadModel() {
promiseToken.invalidate()
MyModel.fetchFromNetworkAsPromise()
@@ -372,30 +320,16 @@ PromiseInvalidationToken
‘s
-requestCancelOnInvalidate(_:)
if you want to be able to cancel the promise later.
+
Nearly all callback registration methods will automatically propagate cancellation requests from the child to the parent if the parent has no other observers. If all observers for a promise request cancellation, the cancellation request will propagate upwards at this time. This means that a promise will not automatically cancel as long as there’s at least one interested observer. Do note that promises that have no observers do not get automatically cancelled, this only happens if there’s at least one observer (which then requests cancellation). Automatic cancellation propagation also requires that the promise itself no longer be in scope. For this reason you should avoid holding onto promises long-term and instead use the .cancellable
property or PromiseInvalidationToken
‘s requestCancelOnInvalidate(_:)
if you want to be able to cancel the promise later.
-Automatic cancellation propagation also works with the utility functions when(fulfilled:)
and when(first:)
as well as the convenience methods
-timeout(on:delay:)
and delay(on:_:)
.
+Automatic cancellation propagation also works with the utility functions when(fulfilled:)
and when(first:)
as well as the convenience methods timeout(on:delay:)
and delay(on:_:)
.
-Promises have a couple of methods that do not participate in automatic cancellation propagation. You can use tap(on:token:_:)
as an alternative to always
in
-order to register an observer that won’t interfere with the existing automatic cancellation propagation (this is suitable for inserting into the middle of a promise
-chain). You can also use tap()
as a more generic version of this.
+Promises have a couple of methods that do not participate in automatic cancellation propagation. You can use tap(on:token:_:)
as an alternative to always
in order to register an observer that won’t interfere with the existing automatic cancellation propagation (this is suitable for inserting into the middle of a promise chain). You can also use tap()
as a more generic version of this.
Note that ignoringCancel()
disables automatic cancellation propagation on the receiver. Once you invoke this on a promise, it will never automatically cancel.
propagatingCancellation(on:cancelRequested:)
-In some cases you may need to hold onto a promise without blocking cancellation propagation from its children. The primary use-case here is deduplicating access to
-an asynchronous resource (such as a network load). In this scenario you may wish to hold onto a promise and return a new child for every client requesting the same
-resource, without preventing cancellation of the resource load if all clients cancel their requests. This can be accomplished by holding onto the result of calling
-.propagatingCancellation(on:cancelRequested:)
. The promise returned from this method will propagate cancellation to its parent as soon as all children
-have requested cancellation even if the promise is still in scope. When cancellation is requested, the cancelRequested
handler will be invoked immediately prior to
-propagating cancellation upwards; this enables you to release your reference to the promise (so a new request by a client will create a brand new resource load). An
-example of this might look like:
+In some cases you may need to hold onto a promise without blocking cancellation propagation from its children. The primary use-case here is deduplicating access to an asynchronous resource (such as a network load). In this scenario you may wish to hold onto a promise and return a new child for every client requesting the same resource, without preventing cancellation of the resource load if all clients cancel their requests. This can be accomplished by holding onto the result of calling .propagatingCancellation(on:cancelRequested:)
. The promise returned from this method will propagate cancellation to its parent as soon as all children have requested cancellation even if the promise is still in scope. When cancellation is requested, the cancelRequested
handler will be invoked immediately prior to propagating cancellation upwards; this enables you to release your reference to the promise (so a new request by a client will create a brand new resource load). Returning a new child to each client can be done using makeChild()
. An example of this might look like:
func loadResource(at url: URL) {
let promise: StdPromise<Model>
if let existingPromise = resourceLoads[url] {
@@ -409,24 +343,16 @@ resourceLoads[url] = promise
}
// Return a new child for each request so all clients have to cancel, not just one.
- return promise.then(on: .immediate, { _ in })
+ return promise.makeChild()
}
The special .nowOr(_:)
context
-There is a special context PromiseContext.nowOr(_:)
that behaves a bit differently than other contexts. This context is special in that its callback executes
-differently depending on whether the promise it’s being registered on has already resolved by the time the callback is registered. If the promise has already
-resolved then .nowOr(context)
behaves like .immediate
, otherwise it behaves like the wrapped context
. This context is intended to be used to replace
-code that would otherwise check if the promise.result
is non-nil
prior to registering a callback.
+There is a special context PromiseContext.nowOr(_:)
that behaves a bit differently than other contexts. This context is special in that its callback executes differently depending on whether the promise it’s being registered on has already resolved by the time the callback is registered. If the promise has already resolved then .nowOr(context)
behaves like .immediate
, otherwise it behaves like the wrapped context
. This context is intended to be used to replace code that would otherwise check if the promise.result
is non-nil
prior to registering a callback.
-If this context is used in Promise.init(on:_:)
it always behaves like .immediate
, and if it’s used in DelayedPromise.init(on:_:)
it always behaves
-like the wrapped context.
+If this context is used in Promise.init(on:_:)
it always behaves like .immediate
, and if it’s used in DelayedPromise.init(on:_:)
it always behaves like the wrapped context.
-There is a property PromiseContext.isExecutingNow
that can be accessed from within a callback registered with .nowOr(_:)
to determine if the callback
-is executing synchronously or asynchronously. When accessed from any other context it returns false
. When registering a callback with .immediate
from
-within a callback where PromiseContext.isExecutingNow
is true
, the nested callback will inherit the PromiseContext.isExecutingNow
flag if and only
-if the nested callback is also executing synchronously. This is a bit subtle but is intended to allow Promise(on: .immediate, { … })
to inherit the flag from
-its surrounding scope.
+There is a property PromiseContext.isExecutingNow
that can be accessed from within a callback registered with .nowOr(_:)
to determine if the callback is executing synchronously or asynchronously. When accessed from any other context it returns false
. When registering a callback with .immediate
from within a callback where PromiseContext.isExecutingNow
is true
, the nested callback will inherit the PromiseContext.isExecutingNow
flag if and only if the nested callback is also executing synchronously. This is a bit subtle but is intended to allow Promise(on: .immediate, { … })
to inherit the flag from its surrounding scope.
An example of how this context might be used is when populating an image view from a network request:
createNetworkRequestAsPromise()
@@ -445,41 +371,28 @@ Promise Helpers
There are a few helper functions that can be used to deal with multiple promises.
when(fulfilled:)
-when(fulfilled:)
is a global function that takes either an array of promises or 2–6 promises as separate arguments, and returns a single promise that is
-eventually fulfilled with the values of all input promises. With the array version all input promises must have the same type and the result is fulfilled with an array.
-With the separate argument version the promises may have unique value types (but the same error type) and the result is fulfilled with a tuple.
+when(fulfilled:)
is a global function that takes either an array of promises or 2–6 promises as separate arguments, and returns a single promise that is eventually fulfilled with the values of all input promises. With the array version all input promises must have the same type and the result is fulfilled with an array. With the separate argument version the promises may have unique value types (but the same error type) and the result is fulfilled with a tuple.
-If any of the input promises is rejected or cancelled, the resulting promise is immediately rejected or cancelled as well. If multiple input promises are rejected or
-cancelled, the first such one affects the result.
+If any of the input promises is rejected or cancelled, the resulting promise is immediately rejected or cancelled as well. If multiple input promises are rejected or cancelled, the first such one affects the result.
This function has an optional parameter cancelOnFailure:
that, if provided as true
, will cancel all input promises if any of them are rejected.
when(first:)
-when(first:)
is a global function that takes an array of promises of the same type, and returns a single promise that eventually adopts the same value or error as
-the first input promise that gets fulfilled or rejected. Cancelled input promises are ignored, unless all input promsies are cancelled, at which point the resulting
-promise will be cancelled as well.
+when(first:)
is a global function that takes an array of promises of the same type, and returns a single promise that eventually adopts the same value or error as the first input promise that gets fulfilled or rejected. Cancelled input promises are ignored, unless all input promsies are cancelled, at which point the resulting promise will be cancelled as well.
-This function has an optional parameter cancelRemaining:
that, if provided as true
, will cancel the remaining input promises as soon as one of them is fulfilled
-or rejected.
+This function has an optional parameter cancelRemaining:
that, if provided as true
, will cancel the remaining input promises as soon as one of them is fulfilled or rejected.
Promise.timeout(on:delay:)
-Promise.timeout(on:delay:)
is a method that returns a new promise that adopts the same value as the receiver, or is rejected with an error if the receiver isn’t
-resolved within the given interval.
+Promise.timeout(on:delay:)
is a method that returns a new promise that adopts the same value as the receiver, or is rejected with an error if the receiver isn’t resolved within the given interval.
Promise.delay(on:_:)
-Promise.delay(on:_:)
is a method that returns a new promise that adopts the same result as the receiver after the specified delay. It is intended primarily for
-testing purposes.
+Promise.delay(on:_:)
is a method that returns a new promise that adopts the same result as the receiver after the specified delay. It is intended primarily for testing purposes.
Objective-C
-Tomorrowland has Obj-C compatibility in the form of TWLPromise<ValueType,ErrorType>
. This is a parallel promise implementation that can be bridged to/from
-Promise
and supports all of the same functionality. Note that some of the method names are different (due to lack of overloading), and while TWLPromise
is
-generic over its types, the return values of callback registration methods that return new promises are not parameterized (due to inability to have generic methods).
+Tomorrowland has Obj-C compatibility in the form of TWLPromise<ValueType,ErrorType>
. This is a parallel promise implementation that can be bridged to/from Promise
and supports all of the same functionality. Note that some of the method names are different (due to lack of overloading), and while TWLPromise
is generic over its types, the return values of callback registration methods that return new promises are not parameterized (due to inability to have generic methods).
Callback lifetimes
-Callbacks registered on promises will be retained until the promise is resolved. If a callback is invoked (or would be invoked if the relevant invalidation token hadn’t
-been invalidated), Tomorrowland guarantees that it will release the callback on the context it was invoked on. If the callback is not invoked (e.g. it’s a then(on:_:)
-callback but the promise was rejected) then no guarantees are made as to the context the callback is released on. If you need to ensure it’s released on the
-appropriate context (e.g. if it captures an object that must deallocate on the main thread) then you can use .always
or one of the .mapResult
variants.
+Callbacks registered on promises will be retained until the promise is resolved. If a callback is invoked (or would be invoked if the relevant invalidation token hadn’t been invalidated), Tomorrowland guarantees that it will release the callback on the context it was invoked on. If the callback is not invoked (e.g. it’s a then(on:_:)
callback but the promise was rejected) then no guarantees are made as to the context the callback is released on. If you need to ensure it’s released on the appropriate context (e.g. if it captures an object that must deallocate on the main thread) then you can use .always
or one of the .mapResult
variants.
Requirements
Requires a minimum of iOS 9, macOS 10.10, watchOS 2.0, or tvOS 9.0.
@@ -497,25 +410,32 @@ Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you shall be dual licensed as above, without any additional terms or conditions.
Version History
+v1.4.0
+
+
+- Fix the cancellation propagation behavior of
Promise.Resolver.resolve(with:)
and the flatMap
family of methods. Previously, requesting cancellation of the promise associated with the resolver (for resolve(with:)
, or the returned promise for the flatMap
family) would immediately request cancellation of the upstream promise even if the upstream promise had other children. The new behavior fixes this such that it participates in automatic cancellation propagation just like any other child promise (#54).
+- Slightly optimize stack usage when chaining one promise to another.
+- Avoid using stack space for chained promises that don’t involve a callback. For example, when the promise returned from a
flatMap(on:token:_:)
resolves it will resolve the outer promise without using additional stack frames. You can think of it like tail calling functions. This affects not just flatMap
but also operations such as tap()
, ignoringCancel()
, and more. This also applies to Obj-C (with TWLPromise
).
+
+
+Note: This does not affect the variants that implicitly upcast from some E: Swift.Error
to Swift.Error
such as tryFlatMap(on:token:_:)
.
+
+
+- Change cancellation propagation behavior of
onCancel
. Like tap
, it doesn’t prevent automatic cancellation propagation if the parent has other children and all other children request cancellation. Unlike tap
, requesting cancellation of onCancel
when there are no other children will propagate cancellation to the parent. The motivation here is attaching an onCancel
observer shouldn’t prevent cancellation that would otherwise occur, but when it’s the only child it should behave like the other standard observers (#57).
+- Add method
Promise.makeChild()
. This returns a new child of the receiver that adopts the receiver’s value and propagates cancellation like any other observer. The purpose here is to be used when handing back multiple children of one parent to callers, as handing back the parent means any one caller can cancel it without the other callers’ participation. This is particularly useful in conjunction with propagatingCancellation(on:cancelRequested:)
(#56).
+
v1.3.0
-- Add
PromiseContext.isExecutingNow
(TWLPromiseContext.isExecutingNow
in Obj-C) that returns true
if accessed from within a callback registered
-with .nowOr(_:)
and executing synchronously, or false
otherwise. If accessed from within a callback (or Promise.init(on:_:)
) registered with
-.immediate
and running synchronously, it inherits the surrounding scope’s PromiseContext.isExecutingNow
flag. This is intended to allow
-Promise(on: .immediate, { … })
to query the surrounding scope’s flag (#53).
+- Add
PromiseContext.isExecutingNow
(TWLPromiseContext.isExecutingNow
in Obj-C) that returns true
if accessed from within a callback registered with .nowOr(_:)
and executing synchronously, or false
otherwise. If accessed from within a callback (or Promise.init(on:_:)
) registered with .immediate
and running synchronously, it inherits the surrounding scope’s PromiseContext.isExecutingNow
flag. This is intended to allow Promise(on: .immediate, { … })
to query the surrounding scope’s flag (#53).
- Add convenience methods to Obj-C for doing then+catch together, as this is a common pattern and chaining Obj-C methods is a little awkward (#45).
-- Change
Promise.timeout
’s default context to .nowOr(.auto)
for the Error
overload as well.
-- Change the behavior of
Promise.timeout(on:delay:)
when the delay
is less than or equal to zero, the context
is .immediate
or .nowOr(_:)
, and the
-upstream promise hasn’t resolved yet. Previously the timeout would occur asynchronously and the upstream promise would get a chance to race the timeout. With
-the new behavior the timeout occurs synchronously (#49).
+- Change
Promise.timeout
‘s default context to .nowOr(.auto)
for the Error
overload as well.
+- Change the behavior of
Promise.timeout(on:delay:)
when the delay
is less than or equal to zero, the context
is .immediate
or .nowOr(_:)
, and the upstream promise hasn’t resolved yet. Previously the timeout would occur asynchronously and the upstream promise would get a chance to race the timeout. With the new behavior the timeout occurs synchronously (#49).
v1.2.0
-- Add
PromiseContext.nowOr(context)
(+[TWLContext nowOrContext:]
in Obj-C) that runs the callback synchronously when registered if the promise
-has already resolved, otherwise registers the callback to run on context
. This can be used to replace code that previously would have required checking
-promise.result
prior to registering the callback (#34).
+- Add
PromiseContext.nowOr(context)
(+[TWLContext nowOrContext:]
in Obj-C) that runs the callback synchronously when registered if the promise has already resolved, otherwise registers the callback to run on context
. This can be used to replace code that previously would have required checking promise.result
prior to registering the callback (#34).
For example:
@@ -525,30 +445,20 @@ v1.2.0
-- Add
Promise.Resolver.hasRequestedCancel
(TWLResolver.cancelRequested
in Obj-C) that returns true
if the promise has been requested to
-cancel or is already cancelled, or false
if it hasn’t been requested to cancel or is fulfilled or rejected. This can be used when a promise initializer takes
-significant time in a manner not easily interrupted by an onRequestCancel
handler (#47).
-- Change
Promise.timeout
’s default context from .auto
to .nowOr(.auto)
. This behaves the same as .auto
in most cases, except if the receiver has
-already been resolved this will cause the returned promise to likewise already be resolved (#50).
-- Ensure
when(first:cancelRemaining:)
returns an already-cancelled promise if all input promises were previously cancelled, instead of cancelling the
-returned promise asynchronously (#51).
-- Ensure
when(fulfilled:qos:cancelOnFailure:)
returns an already-resolved promise if either all input promises were previously fulfliled or any input
-promise was previously rejected or cancelled (#52).
+- Add
Promise.Resolver.hasRequestedCancel
(TWLResolver.cancelRequested
in Obj-C) that returns true
if the promise has been requested to cancel or is already cancelled, or false
if it hasn’t been requested to cancel or is fulfilled or rejected. This can be used when a promise initializer takes significant time in a manner not easily interrupted by an onRequestCancel
handler (#47).
+- Change
Promise.timeout
’s default context from .auto
to .nowOr(.auto)
. This behaves the same as .auto
in most cases, except if the receiver has already been resolved this will cause the returned promise to likewise already be resolved (#50).
+- Ensure
when(first:cancelRemaining:)
returns an already-cancelled promise if all input promises were previously cancelled, instead of cancelling the returned promise asynchronously (#51).
+- Ensure
when(fulfilled:qos:cancelOnFailure:)
returns an already-resolved promise if either all input promises were previously fulfliled or any input promise was previously rejected or cancelled (#52).
v1.1.1
-- Fix memory leaks in
PromiseInvalidationToken.requestCancelOnInvalidate(_:)
and
-PromiseInvalidationToken.chainInvalidation(from:includingCancelWithoutInvalidating:)
when cleaning up nil
nodes prior to pushing on the
-new node (#48).
+- Fix memory leaks in
PromiseInvalidationToken.requestCancelOnInvalidate(_:)
and PromiseInvalidationToken.chainInvalidation(from:includingCancelWithoutInvalidating:)
when cleaning up nil
nodes prior to pushing on the new node (#48).
v1.1.0
-- Add new method
.propagatingCancellation(on:cancelRequested:)
that can be used to create a long-lived promise that propagates cancellation from its
-children to its parent while it’s still alive. Normally promises don’t propagate cancellation until they themselves are released, in case more children are going to be
-added. This new method is intended to be used when deduplicating requests for an asynchronous resource (such as a network load) such that the resource request
-can be cancelled in the event that no children care about it anymore (#46).
+- Add new method
.propagatingCancellation(on:cancelRequested:)
that can be used to create a long-lived promise that propagates cancellation from its children to its parent while it’s still alive. Normally promises don’t propagate cancellation until they themselves are released, in case more children are going to be added. This new method is intended to be used when deduplicating requests for an asynchronous resource (such as a network load) such that the resource request can be cancelled in the event that no children care about it anymore (#46).
v1.0.1
@@ -558,27 +468,18 @@ v1.0.1
v1.0.0
-- Fix a rather serious bug where
PromiseInvalidationToken
s would not deinit as long as any promise whose callback was tied to the token was still unresolved.
-This meant that the default invalidateOnDeinit
behavior would not trigger and the callback would still fire even though there were no more external references
-to the token, and this meant any promises configured to be cancelled when the promise invalidated would not cancel. Tokens used purely for
-requestCancelOnInvalidate(_:)
would still deallocate, and tokens would still deallocate after any associated promises had resolved.
-- Tweak the atomic memory ordering used in
PromiseInvalidationToken
s. After a careful re-reading I don’t believe I was issuing the correct fences previously,
-making it possible for tokens whose associated promise callbacks were executing concurrently with a call to requestCancelOnInvalidate(_:)
to read the
-wrong generation value, and for tokens that had requestCancelOnInvalidate(_:)
invoked concurrently on multiple threads to corrupt the generation.
-- Add
PromiseInvalidationToken.chainInvalidation(from:)
to invalidate a token whenever another token invalidates. This allows for building a tree of
-tokens in order to have both fine-grained and bulk invalidation at the same time. Tokens chained together this way stay chained forever (#43).
-- Update project file to Swift 5.0. The source already supported this. This change should only affect people using Carthage or anyone adding building this
-framework from source.
-- Update the podspec to list both Swift 4.2 and Swift 5.0. With CocoaPods 1.7.0 or later your
Podfile
can now declare which version of Swift it’s compatible with.
-For anyone using CocoaPods 1.6 or earlier it will default to Swift 5.0.
+- Fix a rather serious bug where
PromiseInvalidationToken
s would not deinit as long as any promise whose callback was tied to the token was still unresolved. This meant that the default invalidateOnDeinit
behavior would not trigger and the callback would still fire even though there were no more external references to the token, and this meant any promises configured to be cancelled when the promise invalidated would not cancel. Tokens used purely for requestCancelOnInvalidate(_:)
would still deallocate, and tokens would still deallocate after any associated promises had resolved.
+- Tweak the atomic memory ordering used in
PromiseInvalidationToken
s. After a careful re-reading I don’t believe I was issuing the correct fences previously, making it possible for tokens whose associated promise callbacks were executing concurrently with a call to requestCancelOnInvalidate(_:)
to read the wrong generation value, and for tokens that had requestCancelOnInvalidate(_:)
invoked concurrently on multiple threads to corrupt the generation.
+- Add
PromiseInvalidationToken.chainInvalidation(from:)
to invalidate a token whenever another token invalidates. This allows for building a tree of tokens in order to have both fine-grained and bulk invalidation at the same time. Tokens chained together this way stay chained forever (#43).
+- Update project file to Swift 5.0. The source already supported this. This change should only affect people using Carthage or anyone adding building this framework from source.
+- Update the podspec to list both Swift 4.2 and Swift 5.0. With CocoaPods 1.7.0 or later your
Podfile
can now declare which version of Swift it’s compatible with. For anyone using CocoaPods 1.6 or earlier it will default to Swift 5.0.
v0.6.0
- Make
DelayedPromise
conform to Equatable
(#37).
- Add convenience functions for working with
Swift.Result
(#39).
-- Mark all the deprecated functions as unavailable instead. This restores the ability to write code like
promise.then({ foo?($0) })
without it incorrectly
-resolving to the deprecated form of map(_:)
(#35).
+- Mark all the deprecated functions as unavailable instead. This restores the ability to write code like
promise.then({ foo?($0) })
without it incorrectly resolving to the deprecated form of map(_:)
(#35).
- Rename
Promise.init(result:)
and Promise.init(on:result:after:)
to Promise.init(with:)
and Promise.init(on:with:after:)
(#40).
v0.5.1
@@ -588,28 +489,23 @@ v0.5.1
Ensure that if a user-supplied callback is invoked, it is also released on the context where it was invoked (#38).
-This guarantee is only made for callbacks that are invoked (ignoring tokens). What this means is when using e.g. .then(on:_:)
if the promise is fulfilled, the
- onSuccess
block will be released on the provided context, but if the promise is rejected no such guarantee is made. If you rely on the context it’s released on
- (e.g. it captures an object that must deallocate on the main thread) then you can use .always
or one of the mapResult
variants.
+This guarantee is only made for callbacks that are invoked (ignoring tokens). What this means is when using e.g. .then(on:_:)
if the promise is fulfilled, the onSuccess
block will be released on the provided context, but if the promise is rejected no such guarantee is made. If you rely on the context it’s released on (e.g. it captures an object that must deallocate on the main thread) then you can use .always
or one of the mapResult
variants.
v0.5.0
- Rename a lot of methods on
Promise
and TokenPromise
(#5).
-This gets rid of most overrides, leaving the only overridden methods to be ones that handle either Swift.Error
or E: Swift.Error
, and even these overrides
- are removed in the Swift 5 compiler.
+This gets rid of most overrides, leaving the only overridden methods to be ones that handle either Swift.Error
or E: Swift.Error
, and even these overrides are removed in the Swift 5 compiler.
-then
is now map
or flatMap
, recover
’s override is now flatMapError
, always
’s override is now flatMapResult
, and similar renames were made for
- the try
variants.
+then
is now map
or flatMap
, recover
’s override is now flatMapError
, always
’s override is now flatMapResult
, and similar renames were made for the try
variants.
- Add a new
then
method whose block returns Void
. The returned promise resolves to the same result as the original promise.
- Add new
mapError
and tryMapError
methods.
- Add new
mapResult
and tryMapResult
methods.
- Extend
tryFlatMapError
to be available on all Promise
s instead of just those whose error type is Swift.Error
.
-- Remove the default
.auto
value for the on context:
parameter to most calls. It’s now only provided for the “terminal” callbacks, the ones that don’t return a
-value from the handler. This avoids the common problem of running trivial maps on the main thread unnecessarily (#33).
+- Remove the default
.auto
value for the on context:
parameter to most calls. It’s now only provided for the “terminal” callbacks, the ones that don’t return a value from the handler. This avoids the common problem of running trivial maps on the main thread unnecessarily (#33).
v0.4.3
@@ -629,23 +525,16 @@ v0.4.1
v0.4
-- Improve the behavior of
.delay(on:_:)
and .timeout(on:delay:)
when using PromiseContext.operationQueue
. The relevant operation is now added
-to the queue immediately and only becomes ready once the delay/timeout has elapsed.
+- Improve the behavior of
.delay(on:_:)
and .timeout(on:delay:)
when using PromiseContext.operationQueue
. The relevant operation is now added to the queue immediately and only becomes ready once the delay/timeout has elapsed.
- Add
-[TWLPromise initCancelled]
to construct a pre-cancelled promise.
-- Add
Promise.init(on:fulfilled:after:)
, Promise.init(on:rejected:after:)
, and Promise.init(on:result:after:)
. These initializers produce
-something akin to Promise(fulfilled: value).delay(after)
except they respond to cancellation immediately. This makes them more suitable for use as
-cancellable timers, as opposed to .delay(_:)
which is more intended for debugging (#27).
-- Try to clean up the callback list when calling
PromiseInvalidationToken.requestCancelOnInvalidate(_:)
. Any deallocated promises at the head of the
-callback list will be removed. This will help keep the callback list from growing uncontrollably when a token is used merely to cancel all promises when the owner
-deallocates as opposed to being periodically invalidated during its lifetime (#25).
-- Cancel the
.delay(_:)
timer if .requestCancel()
is invoked and the upstream promise cancelled. This way requested cancels will skip the delay, but
-unexpected cancels will still delay the result (#26).
+- Add
Promise.init(on:fulfilled:after:)
, Promise.init(on:rejected:after:)
, and Promise.init(on:result:after:)
. These initializers produce something akin to Promise(fulfilled: value).delay(after)
except they respond to cancellation immediately. This makes them more suitable for use as cancellable timers, as opposed to .delay(_:)
which is more intended for debugging (#27).
+- Try to clean up the callback list when calling
PromiseInvalidationToken.requestCancelOnInvalidate(_:)
. Any deallocated promises at the head of the callback list will be removed. This will help keep the callback list from growing uncontrollably when a token is used merely to cancel all promises when the owner deallocates as opposed to being periodically invalidated during its lifetime (#25).
+- Cancel the
.delay(_:)
timer if .requestCancel()
is invoked and the upstream promise cancelled. This way requested cancels will skip the delay, but unexpected cancels will still delay the result (#26).
v0.3.4
-- Add
PromiseInvalidationToken.cancelWithoutInvalidating()
. This method cancels any associated promises without invalidating the token, thus
-allowing for any onCancel
and always
handlers on the promises to fire (#23).
+- Add
PromiseInvalidationToken.cancelWithoutInvalidating()
. This method cancels any associated promises without invalidating the token, thus allowing for any onCancel
and always
handlers on the promises to fire (#23).
- Add missing
Promise
↔ObjCPromise
bridging methods for the case of Value: AnyObject, Error == Swift.Error
(#24).
v0.3.3
@@ -676,8 +565,7 @@ v0.3
- Add
Promise.requestCancelOnInvalidate(_:)
as a convenience for token.requestCancelOnInvalidate(_:)
.
- Add
Promise.requestCancelOnDeinit(_:)
as a convenience for adding a token property to an object that invalites on deinit.
-- Better support for
OperationQueue
with delay
/timeout
. Instead of using the OperationQueue
’s underlying queue, we instead use a .userInitiated
-queue for the timer and hop onto the OperationQueue
to resolve the promise.
+- Better support for
OperationQueue
with delay
/timeout
. Instead of using the OperationQueue
’s underlying queue, we instead use a .userInitiated
queue for the timer and hop onto the OperationQueue
to resolve the promise.
v0.2
@@ -693,7 +581,7 @@ v0.1
diff --git a/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/search.json b/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/search.json
index 10637b2..3a649da 100644
--- a/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/search.json
+++ b/docs/docsets/Tomorrowland.docset/Contents/Resources/Documents/search.json
@@ -1 +1 @@
-{"Typealiases.html#/s:12Tomorrowland17StdDelayedPromisea":{"name":"StdDelayedPromise","abstract":"StdDelayedPromise
is an alias for a DelayedPromise
whose error type is Swift.Error
.
"},"Typealiases.html#/s:12Tomorrowland10StdPromisea":{"name":"StdPromise","abstract":"StdPromise
is an alias for a Promise
whose error type is Swift.Error
.
"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5innerAA0C0Vyxq_Gvp":{"name":"inner","abstract":"The wrapped Promise
.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5tokenAA0c12InvalidationB0Vvp":{"name":"token","abstract":"The PromiseInvalidationToken
to use when invoking methods on the wrapped Promise
.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7promise5tokenACyxq_GAA0C0Vyxq_G_AA0c12InvalidationB0Vtcfc":{"name":"init(promise:token:)","abstract":"Returns a new TokenPromise
that wraps the given promise.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV4then2on_ACyxq_GAA0C7ContextO_yxctF":{"name":"then(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3map2on_ACyqd__q_GAA0C7ContextO_qd__xctlF":{"name":"map(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7flatMap2on_ACyqd__q_GAA0C7ContextO_AA0C0Vyqd__q_GxctlF":{"name":"flatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5catch2on_ACyxq_GAA0C7ContextO_yq_ctF":{"name":"catch(on:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7recover2on_ACyxAA7NoErrorOGAA0C7ContextO_xq_ctF":{"name":"recover(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV8mapError2on_ACyxqd__GAA0C7ContextO_qd__q_ctlF":{"name":"mapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV12flatMapError2on_ACyxqd__GAA0C7ContextO_AA0C0Vyxqd__Gq_ctlF":{"name":"flatMapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV11tryMapError2on_ACyxs0F0_pGAA0C7ContextO_qd__q_KctsAFRd__lF":{"name":"tryMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV15tryFlatMapError2on_ACyxs0G0_pGAA0C7ContextO_AA0C0Vyxqd__Gq_KctsAFRd__lF":{"name":"tryFlatMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryMapError(on:_:)":{"name":"tryMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMapError(on:_:)":{"name":"tryFlatMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV6always2on_ACyxq_GAA0C7ContextO_yAA0C6ResultOyxq_GctF":{"name":"always(on:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV9mapResult2on0F8CompleteACyqd__qd_0_GAA0C7ContextO_AA0cE0Oyqd__qd_0_GAKyxq_Gctr0_lF":{"name":"mapResult(on:onComplete:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV13flatMapResult2on_ACyqd__qd_0_GAA0C7ContextO_AA0C0Vyqd__qd_0_GAA0cF0Oyxq_Gctr0_lF":{"name":"flatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV12tryMapResult2on_ACyqd__s5Error_pGAA0C7ContextO_AA0cF0Oyqd__qd_0_GAKyxq_GKctsAFRd_0_r0_lF":{"name":"tryMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV16tryFlatMapResult2on_ACyqd__s5Error_pGAA0C7ContextO_AA0C0Vyqd__qd_0_GAA0cG0Oyxq_GKctsAFRd_0_r0_lF":{"name":"tryFlatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryMapResult(on:_:)":{"name":"tryMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMapResult(on:_:)":{"name":"tryFlatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3tap2on_ACyxq_GAA0C7ContextO_yAA0C6ResultOyxq_GctF":{"name":"tap(on:_:)","abstract":"
Registers a callback that will be invoked when the promise is resolved without affecting behavior.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3tapACyxq_GyF":{"name":"tap()","abstract":"Returns a new TokenPromise
that adopts the result of the receiver without affecting its","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV8onCancel0D0_ACyxq_GAA0C7ContextO_yyctF":{"name":"onCancel(on:_:)","abstract":"
Registers a callback that will be invoked when the promise is cancelled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV4forkyACyxq_GyAEKXEKF":{"name":"fork(_:)","abstract":"Passes the TokenPromise
to a block and then returns the TokenPromise
for further","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV14ignoringCancelACyxq_GyF":{"name":"ignoringCancel()","abstract":"
Returns a new TokenPromise
that adopts the value of the receiver but ignores cancel","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"
Two TokenPromise
s compare as equal if they represent the same promise.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE7tryThen2on_ACyxsAD_pGAA0C7ContextO_yxKctF":{"name":"tryThen(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE6tryMap2on_ACyqd__sAD_pGAA0C7ContextO_qd__xKctlF":{"name":"tryMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMap(on:_:)":{"name":"tryFlatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE10tryFlatMap2on_ACyqd__sAD_pGAA0C7ContextO_AA0C0Vyqd__qd_0_GxKctsADRd_0_r0_lF":{"name":"tryFlatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE10tryRecover2on_ACyxsAD_pGAA0C7ContextO_xsAD_pKctF":{"name":"tryRecover(on:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE010tryFlatMapD02on_ACyxsAD_pGAA0C7ContextO_AA0C0Vyxqd__GsAD_pKctsADRd__lF":{"name":"tryFlatMapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV18invalidateOnDeinitACSb_tcfc":{"name":"init(invalidateOnDeinit:)","abstract":"Creates and returns a new PromiseInvalidationToken
.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV10invalidateyyF":{"name":"invalidate()","abstract":"Invalidates the token and cancels any associated promises.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25cancelWithoutInvalidatingyyF":{"name":"cancelWithoutInvalidating()","abstract":"Cancels any associated promises without invalidating the token.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25requestCancelOnInvalidateyyAA0B0Vyxq_Gr0_lF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Registers a Promise
to be requested to cancel automatically when the token is invalidated.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25requestCancelOnInvalidateyySo10TWLPromiseCyxq_GRlzCRl_Cr0_lF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Registers an ObjCPromise
to be requested to cancel automatically when the token is","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV05chainC04from34includingCancelWithoutInvalidatingyAC_SbtF":{"name":"chainInvalidation(from:includingCancelWithoutInvalidating:)","abstract":"
Invalidates the token whenever another token is invalidated.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseInvalidationToken"},"Structs/PromiseCancellable.html#/s:12Tomorrowland18PromiseCancellableV13requestCancelyyF":{"name":"requestCancel()","abstract":"Requests cancellation of the promise this PromiseCancellable
was created from.
","parent_name":"PromiseCancellable"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7fulfill4withyx_tF":{"name":"fulfill(with:)","abstract":"Fulfills the promise with the given value.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV6reject4withyq__tF":{"name":"reject(with:)","abstract":"Rejects the promise with the given error.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV6cancelyyF":{"name":"cancel()","abstract":"Cancels the promise.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7resolve4withyAA0B6ResultOyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7resolve4withyACyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with another promise.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV15onRequestCancel0D0_yAA0B7ContextO_yAEyxq__GctF":{"name":"onRequestCancel(on:_:)","abstract":"Registers a block that will be invoked if requestCancel()
is invoked on the promise","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV18hasRequestedCancelSbvp":{"name":"hasRequestedCancel","abstract":"
Returns whether the promise has already been requested to cancel.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5Error_pRs_rlE7resolve4withyAA0B6ResultOyxqd__G_tsAFRd__lF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5Error_pRs_rlE14handleCallback08isCancelD0yxSg_sAF_pSgtcSbsAF_pc_tF":{"name":"handleCallback(isCancelError:)","abstract":"Convenience method for handling framework callbacks.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5ErrorR_rlE7resolve4withys6ResultOyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html":{"name":"Resolver","abstract":"A Resolver
is used to fulfill, reject, or cancel its associated Promise
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6resultAA0B6ResultOyxq_GSgvp":{"name":"result","abstract":"Returns the result of the promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV16makeWithResolverACyxq_G_AC0E0Vyxq__GtyFZ":{"name":"makeWithResolver()","abstract":"Returns a Promise
and a Promise.Resolver
that can be used to fulfill that promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on_ACyxq_GAA0B7ContextO_yAC8ResolverVyxq__Gctcfc":{"name":"init(on:_:)","abstract":"Returns a new Promise
that will be resolved using the given block.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9fulfilledACyxq_Gx_tcfc":{"name":"init(fulfilled:)","abstract":"Returns a Promise
that is already fulfilled with the given value.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8rejectedACyxq_Gq__tcfc":{"name":"init(rejected:)","abstract":"Returns a Promise
that is already rejected with the given error.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4withACyxq_GAA0B6ResultOyxq_G_tcfc":{"name":"init(with:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4then2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyxctF":{"name":"then(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3map2on5token_ACyqd__q_GAA0B7ContextO_AA0B17InvalidationTokenVSgqd__xctlF":{"name":"map(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7flatMap2on5token_ACyqd__q_GAA0B7ContextO_AA0B17InvalidationTokenVSgAGxctlF":{"name":"flatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV5catch2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyq_ctF":{"name":"catch(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7recover2on5token_ACyxAA7NoErrorOGAA0B7ContextO_AA0B17InvalidationTokenVSgxq_ctF":{"name":"recover(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8mapError2on5token_ACyxqd__GAA0B7ContextO_AA0B17InvalidationTokenVSgqd__q_ctlF":{"name":"mapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV12flatMapError2on5token_ACyxqd__GAA0B7ContextO_AA0B17InvalidationTokenVSgAGq_ctlF":{"name":"flatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV11tryMapError2on5token_ACyxs0E0_pGAA0B7ContextO_AA0B17InvalidationTokenVSgqd__q_KctsAGRd__lF":{"name":"tryMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV15tryFlatMapError2on5token_ACyxs0F0_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyxqd__Gq_KctsAGRd__lF":{"name":"tryFlatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/tryMapError(on:token:_:)":{"name":"tryMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMapError(on:token:_:)":{"name":"tryFlatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6always2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyAA0B6ResultOyxq_GctF":{"name":"always(on:token:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9mapResult2on5token_ACyqd__qd_0_GAA0B7ContextO_AA0B17InvalidationTokenVSgAA0bD0Oyqd__qd_0_GANyxq_Gctr0_lF":{"name":"mapResult(on:token:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV13flatMapResult2on5token_ACyqd__qd_0_GAA0B7ContextO_AA0B17InvalidationTokenVSgAgA0bE0Oyxq_Gctr0_lF":{"name":"flatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV12tryMapResult2on5token_ACyqd__s5Error_pGAA0B7ContextO_AA0B17InvalidationTokenVSgAA0bE0Oyqd__qd_0_GAOyxq_GKctsAGRd_0_r0_lF":{"name":"tryMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV16tryFlatMapResult2on5token_ACyqd__s5Error_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyqd__qd_0_GAA0bF0Oyxq_GKctsAGRd_0_r0_lF":{"name":"tryFlatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/tryMapResult(on:token:_:)":{"name":"tryMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMapResult(on:token:_:)":{"name":"tryFlatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3tap2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyAA0B6ResultOyxq_GctF":{"name":"tap(on:token:_:)","abstract":"
Registers a callback that will be invoked when the promise is resolved without affecting behavior.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3tapACyxq_GyF":{"name":"tap()","abstract":"Returns a new Promise
that adopts the result of the receiver without affecting its behavior.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8onCancel0C05token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyyctF":{"name":"onCancel(on:token:_:)","abstract":"Registers a callback that will be invoked when the promise is cancelled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV23propagatingCancellation2on15cancelRequestedACyxq_GAA0B7ContextO_yAGctF":{"name":"propagatingCancellation(on:cancelRequested:)","abstract":"Returns a promise that adopts the same value as the receiver, and propagates cancellation","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4forkyACyxq_GyAEKXEKF":{"name":"fork(_:)","abstract":"
Passes the Promise
to a block and then returns the Promise
for further chaining.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV13requestCancelyyF":{"name":"requestCancel()","abstract":"Requests that the Promise
should be cancelled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV25requestCancelOnInvalidateyACyxq_GAA0B17InvalidationTokenVF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Requests that the Promise
should be cancelled when the token is invalidated.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV14ignoringCancelACyxq_GyF":{"name":"ignoringCancel()","abstract":"Returns a new Promise
that adopts the value of the receiver but ignores cancel requests.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6resultACyxq_GAA0B6ResultOyxq_G_tcfc":{"name":"init(result:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on6result5afterACyxq_GAA0B7ContextO_AA0B6ResultOyxq_GSdtcfc":{"name":"init(on:result:after:)","abstract":"Returns a Promise
that resolves with the given result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV21requestCancelOnDeinityACyxq_GyXlF":{"name":"requestCancelOnDeinit(_:)","abstract":"Requests that the Promise
should be cancelled when the object deinits.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Two Promise
s compare as equal if they represent the same promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV11cancellableAA0B11CancellableVvp":{"name":"cancellable","abstract":"Returns a value that can be used to cancel this promise without holding onto the full promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9withTokenyAA0dB0Vyxq_GAA0b12InvalidationD0VF":{"name":"withToken(_:)","abstract":"Returns a new TokenPromise
that wraps the receiver.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on9fulfilled5afterACyxq_GAA0B7ContextO_xSdtcfc":{"name":"init(on:fulfilled:after:)","abstract":"Returns a Promise
that fulfills with the given value after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on8rejected5afterACyxq_GAA0B7ContextO_q_Sdtcfc":{"name":"init(on:rejected:after:)","abstract":"Returns a Promise
that rejects with the given error after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on4with5afterACyxq_GAA0B7ContextO_AA0B6ResultOyxq_GSdtcfc":{"name":"init(on:with:after:)","abstract":"Returns a Promise
that resolves with the given result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV5delay2on_ACyxq_GAA0B7ContextO_SdtF":{"name":"delay(on:_:)","abstract":"Returns a new Promise
that adopts the receiver’s result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7timeout2on5delayACyxAA0B12TimeoutErrorOyq_GGAA0B7ContextO_SdtF":{"name":"timeout(on:delay:)","abstract":"Returns a Promise
that is rejected with an error if the receiver does not resolve within","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5ErrorR_rlE6upcastACyxsAD_pGvp":{"name":"upcast","abstract":"
Returns a new promise with an error type of Swift.Error
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVA2A7NoErrorORs_rlE6upcastACyxs0D0_pGvp":{"name":"upcast","abstract":"Returns a new promise with an error type of Swift.Error
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE2on_ACyxsAD_pGAA0B7ContextO_yAC8ResolverVyxsAD_p_GKctcfc":{"name":"init(on:_:)","abstract":"Returns a new Promise
that will be resolved using the given block.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE7tryThen2on5token_ACyxsAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgyxKctF":{"name":"tryThen(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE6tryMap2on5token_ACyqd__sAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgqd__xKctlF":{"name":"tryMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMap(on:token:_:)":{"name":"tryFlatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE10tryFlatMap2on5token_ACyqd__sAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyqd__qd_0_GxKctsADRd_0_r0_lF":{"name":"tryFlatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE10tryRecover2on5token_ACyxsAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgxsAD_pKctF":{"name":"tryRecover(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5ErrorR_rlE4withACyxq_Gs6ResultOyxq_G_tcfc":{"name":"init(with:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE7timeout2on5delayACyxsAD_pGAA0B7ContextO_SdtF":{"name":"timeout(on:delay:)","abstract":"Returns a Promise
that is rejected with an error if the receiver does not resolve within","parent_name":"Promise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV8Resolvera":{"name":"Resolver","abstract":"
The type of the promise resolver. See Promise<Value,Error>.Resolver
.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV2on_ACyxq_GAA0C7ContextO_yAA0C0V8ResolverVyxq__Gctcfc":{"name":"init(on:_:)","abstract":"Returns a new DelayedPromise
that can be resolved with the given block.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV7promiseAA0C0Vyxq_Gvp":{"name":"promise","abstract":"Returns a Promise
that asynchronously contains the value of the computation.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Two DelayedPromise
s compare as equal if they would produce equal Promise
s.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html":{"name":"DelayedPromise","abstract":"DelayedPromise
is like a Promise
but it doesn’t invoke its callback until the .promise
"},"Structs/Promise.html":{"name":"Promise","abstract":"
A Promise
is a construct that will eventually hold a value or error, and can invoke callbacks"},"Structs/PromiseCancellable.html":{"name":"PromiseCancellable","abstract":"
A type that can be used to cancel a promise without holding onto the full promise.
"},"Structs/PromiseInvalidationToken.html":{"name":"PromiseInvalidationToken","abstract":"An invalidation token that can be used to cancel callbacks registered to a Promise
.
"},"Structs/TokenPromise.html":{"name":"TokenPromise","abstract":"A Promise
adapter that automatically applies a PromiseInvalidationToken
.
"},"Functions.html#/s:12Tomorrowland4when9fulfilled3qos15cancelOnFailureAA7PromiseVySayxGq_GSayAGyxq_GG_8Dispatch0I3QoSV0J6SClassOSbtr0_lF":{"name":"when(fulfilled:qos:cancelOnFailure:)","abstract":"Waits on an array of Promise
s and returns a Promise
that is fulfilled with an array of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled_____3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_q2_q3_tq4_GAGyxq4_G_AGyq_q4_GAGyq0_q4_GAGyq1_q4_GAGyq2_q4_GAGyq3_q4_G8Dispatch0I3QoSV0J6SClassOSbtr5_lF":{"name":"when(fulfilled:_:_:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled____3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_q2_tq3_GAGyxq3_G_AGyq_q3_GAGyq0_q3_GAGyq1_q3_GAGyq2_q3_G8Dispatch0I3QoSV0J6SClassOSbtr4_lF":{"name":"when(fulfilled:_:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled___3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_tq2_GAGyxq2_G_AGyq_q2_GAGyq0_q2_GAGyq1_q2_G8Dispatch0I3QoSV0J6SClassOSbtr3_lF":{"name":"when(fulfilled:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled__3qos15cancelOnFailureAA7PromiseVyx_q_q0_tq1_GAGyxq1_G_AGyq_q1_GAGyq0_q1_G8Dispatch0I3QoSV0J6SClassOSbtr2_lF":{"name":"when(fulfilled:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled_3qos15cancelOnFailureAA7PromiseVyx_q_tq0_GAGyxq0_G_AGyq_q0_G8Dispatch0I3QoSV0J6SClassOSbtr1_lF":{"name":"when(fulfilled:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when5first15cancelRemainingAA7PromiseVyxq_GSayAGG_Sbtr0_lF":{"name":"when(first:cancelRemaining:)","abstract":"
Returns a Promise
that is resolved with the result of the first resolved input Promise
.
"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorO8timedOutyACyxGAEmlF":{"name":"timedOut","abstract":"The promise did not resolve within the given interval.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorO8rejectedyACyxGxcAEmlF":{"name":"rejected(_:)","abstract":"The promise was rejected with an error.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:10Foundation13CustomNSErrorP13errorUserInfoSDySSypGvp":{"name":"errorUserInfo","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorOAASQRzlE2eeoiySbACyxG_AEtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorOAASQRzlE2neoiySbACyxG_AEtFZ":{"name":"!=(_:_:)","abstract":"Returns a Boolean value indicating whether two values are not equal.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseTimeoutError"},"Enums/NoError.html#/s:12Tomorrowland7NoErrorO2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"NoError"},"Enums/NoError.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"NoError"},"Enums/NoError.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"NoError"},"Enums/NoError.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"NoError"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5valueyACyxq_GxcAEmr0_lF":{"name":"value(_:)","abstract":"The value the promise was fulfilled with.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5erroryACyxq_Gq_cAEmr0_lF":{"name":"error(_:)","abstract":"The error the promise was rejected with.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO9cancelledyACyxq_GAEmr0_lF":{"name":"cancelled","abstract":"The promise was cancelled.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5valuexSgvp":{"name":"value","abstract":"Returns the contained value if the result is .value
, otherwise nil
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5errorq_Sgvp":{"name":"error","abstract":"Returns the contained error if the result is .error
, otherwise nil
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO11isCancelledSbvp":{"name":"isCancelled","abstract":"Returns true
if the result is .cancelled
, otherwise false
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO3mapyACyqd__q_Gqd__xKXEKlF":{"name":"map(_:)","abstract":"Maps a successful result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO8mapErroryACyxqd__Gqd__q_KXEKlF":{"name":"mapError(_:)","abstract":"Maps a rejected result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO7flatMapyACyqd__q_GAExKXEKlF":{"name":"flatMap(_:)","abstract":"Maps a successful result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO12flatMapErroryACyxqd__GAEq_KXEKlF":{"name":"flatMapError(_:)","abstract":"Maps a rejected result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAASQRzSQR_rlE2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAASQRzSQR_rlE2neoiySbACyxq_G_AEtFZ":{"name":"!=(_:_:)","abstract":"Returns a Boolean value indicating whether two values are not equal.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAAs5ErrorR_rlEyACyxq_Gs0C0Oyxq_Gcfc":{"name":"init(_:)","abstract":"Returns a PromiseResult
from a Result
.
","parent_name":"PromiseResult"},"Enums/PromiseCallbackError.html#/c:@M@Tomorrowland@E@TWLPromiseCallbackError@TWLPromiseCallbackErrorAPIMismatch":{"name":"apiMismatch","abstract":"The callback did not conform to the expected API.
","parent_name":"PromiseCallbackError"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO4mainyA2CmF":{"name":"main","abstract":"Execute on the main queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO10backgroundyA2CmF":{"name":"background","abstract":"Execute on a dispatch queue with the .background
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO7utilityyA2CmF":{"name":"utility","abstract":"Execute on a dispatch queue with the .utility
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO7defaultyA2CmF":{"name":"default","abstract":"Execute on a dispatch queue with the .default
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO13userInitiatedyA2CmF":{"name":"userInitiated","abstract":"Execute on a dispatch queue with the .userInitiated
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO15userInteractiveyA2CmF":{"name":"userInteractive","abstract":"Execute on a dispatch queue with the .userInteractive
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO5queueyACSo012OS_dispatch_D0CcACmF":{"name":"queue(_:)","abstract":"Execute on the specified dispatch queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO14operationQueueyACSo011NSOperationE0CcACmF":{"name":"operationQueue(_:)","abstract":"Execute on the specified operation queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO9immediateyA2CmF":{"name":"immediate","abstract":"Execute synchronously.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO5nowOryA2CcACmF":{"name":"nowOr(_:)","abstract":"Execute synchronously if the promise is already resolved, otherwise use another context.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO4autoACvpZ":{"name":"auto","abstract":"Returns .main
when accessed from the main thread, otherwise .default
.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO14isExecutingNowSbvpZ":{"name":"isExecutingNow","abstract":"Returns whether a .nowOr(_:)
context is executing synchronously.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO3qosAC8Dispatch0E3QoSV0F6SClassO_tcfc":{"name":"init(qos:)","abstract":"Returns the PromiseContext
that corresponds to a given Dispatch QoS class.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html":{"name":"PromiseContext","abstract":"The context in which a Promise body or callback is evaluated.
"},"Enums/PromiseCallbackError.html":{"name":"PromiseCallbackError","abstract":"An error potentially returned from Promise.Resolver.handleCallback(isCancelError:)
.
"},"Enums/PromiseResult.html":{"name":"PromiseResult","abstract":"The result of a resolved promise.
"},"Enums/NoError.html":{"name":"NoError","abstract":"NoError
is a type that cannot be constructed.
"},"Enums/PromiseTimeoutError.html":{"name":"PromiseTimeoutError","abstract":"The error type returned from Promise.timeout
.
"},"Enums.html":{"name":"Enumerations","abstract":"The following enumerations are available globally.
"},"Functions.html":{"name":"Functions","abstract":"The following functions are available globally.
"},"Structs.html":{"name":"Structures","abstract":"The following structures are available globally.
"},"Typealiases.html":{"name":"Type Aliases","abstract":"The following type aliases are available globally.
"}}
\ No newline at end of file
+{"Typealiases.html#/s:12Tomorrowland17StdDelayedPromisea":{"name":"StdDelayedPromise","abstract":"StdDelayedPromise
is an alias for a DelayedPromise
whose error type is Swift.Error
.
"},"Typealiases.html#/s:12Tomorrowland10StdPromisea":{"name":"StdPromise","abstract":"StdPromise
is an alias for a Promise
whose error type is Swift.Error
.
"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5innerAA0C0Vyxq_Gvp":{"name":"inner","abstract":"The wrapped Promise
.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5tokenAA0c12InvalidationB0Vvp":{"name":"token","abstract":"The PromiseInvalidationToken
to use when invoking methods on the wrapped Promise
.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7promise5tokenACyxq_GAA0C0Vyxq_G_AA0c12InvalidationB0Vtcfc":{"name":"init(promise:token:)","abstract":"Returns a new TokenPromise
that wraps the given promise.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV4then2on_ACyxq_GAA0C7ContextO_yxctF":{"name":"then(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3map2on_ACyqd__q_GAA0C7ContextO_qd__xctlF":{"name":"map(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7flatMap2on_ACyqd__q_GAA0C7ContextO_AA0C0Vyqd__q_GxctlF":{"name":"flatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV5catch2on_ACyxq_GAA0C7ContextO_yq_ctF":{"name":"catch(on:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV7recover2on_ACyxAA7NoErrorOGAA0C7ContextO_xq_ctF":{"name":"recover(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV8mapError2on_ACyxqd__GAA0C7ContextO_qd__q_ctlF":{"name":"mapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV12flatMapError2on_ACyxqd__GAA0C7ContextO_AA0C0Vyxqd__Gq_ctlF":{"name":"flatMapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV11tryMapError2on_ACyxs0F0_pGAA0C7ContextO_qd__q_KctsAFRd__lF":{"name":"tryMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV15tryFlatMapError2on_ACyxs0G0_pGAA0C7ContextO_AA0C0Vyxqd__Gq_KctsAFRd__lF":{"name":"tryFlatMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryMapError(on:_:)":{"name":"tryMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMapError(on:_:)":{"name":"tryFlatMapError(on:_:)","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV6always2on_ACyxq_GAA0C7ContextO_yAA0C6ResultOyxq_GctF":{"name":"always(on:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV9mapResult2on0F8CompleteACyqd__qd_0_GAA0C7ContextO_AA0cE0Oyqd__qd_0_GAKyxq_Gctr0_lF":{"name":"mapResult(on:onComplete:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV13flatMapResult2on_ACyqd__qd_0_GAA0C7ContextO_AA0C0Vyqd__qd_0_GAA0cF0Oyxq_Gctr0_lF":{"name":"flatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV12tryMapResult2on_ACyqd__s5Error_pGAA0C7ContextO_AA0cF0Oyqd__qd_0_GAKyxq_GKctsAFRd_0_r0_lF":{"name":"tryMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV16tryFlatMapResult2on_ACyqd__s5Error_pGAA0C7ContextO_AA0C0Vyqd__qd_0_GAA0cG0Oyxq_GKctsAFRd_0_r0_lF":{"name":"tryFlatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryMapResult(on:_:)":{"name":"tryMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMapResult(on:_:)":{"name":"tryFlatMapResult(on:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3tap2on_ACyxq_GAA0C7ContextO_yAA0C6ResultOyxq_GctF":{"name":"tap(on:_:)","abstract":"
Registers a callback that will be invoked when the promise is resolved without affecting behavior.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV3tapACyxq_GyF":{"name":"tap()","abstract":"Returns a new TokenPromise
that adopts the result of the receiver without affecting its","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV8onCancel0D0_ACyxq_GAA0C7ContextO_yyctF":{"name":"onCancel(on:_:)","abstract":"
Registers a callback that will be invoked when the promise is cancelled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV4forkyACyxq_GyAEKXEKF":{"name":"fork(_:)","abstract":"Passes the TokenPromise
to a block and then returns the TokenPromise
for further","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV14ignoringCancelACyxq_GyF":{"name":"ignoringCancel()","abstract":"
Returns a new TokenPromise
that adopts the value of the receiver but ignores cancel","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"
Two TokenPromise
s compare as equal if they represent the same promise.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE7tryThen2on_ACyxsAD_pGAA0C7ContextO_yxKctF":{"name":"tryThen(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE6tryMap2on_ACyqd__sAD_pGAA0C7ContextO_qd__xKctlF":{"name":"tryMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/tryFlatMap(on:_:)":{"name":"tryFlatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE10tryFlatMap2on_ACyqd__sAD_pGAA0C7ContextO_AA0C0Vyqd__qd_0_GxKctsADRd_0_r0_lF":{"name":"tryFlatMap(on:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE10tryRecover2on_ACyxsAD_pGAA0C7ContextO_xsAD_pKctF":{"name":"tryRecover(on:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"TokenPromise"},"Structs/TokenPromise.html#/s:12Tomorrowland12TokenPromiseVAAs5Error_pRs_rlE010tryFlatMapD02on_ACyxsAD_pGAA0C7ContextO_AA0C0Vyxqd__GsAD_pKctsADRd__lF":{"name":"tryFlatMapError(on:_:)","abstract":"","parent_name":"TokenPromise"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV18invalidateOnDeinitACSb_tcfc":{"name":"init(invalidateOnDeinit:)","abstract":"Creates and returns a new PromiseInvalidationToken
.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV10invalidateyyF":{"name":"invalidate()","abstract":"Invalidates the token and cancels any associated promises.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25cancelWithoutInvalidatingyyF":{"name":"cancelWithoutInvalidating()","abstract":"Cancels any associated promises without invalidating the token.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25requestCancelOnInvalidateyyAA0B0Vyxq_Gr0_lF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Registers a Promise
to be requested to cancel automatically when the token is invalidated.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV25requestCancelOnInvalidateyySo10TWLPromiseCyxq_GRlzCRl_Cr0_lF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Registers an ObjCPromise
to be requested to cancel automatically when the token is","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV05chainC04from34includingCancelWithoutInvalidatingyAC_SbtF":{"name":"chainInvalidation(from:includingCancelWithoutInvalidating:)","abstract":"
Invalidates the token whenever another token is invalidated.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:s28CustomDebugStringConvertibleP16debugDescriptionSSvp":{"name":"debugDescription","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:12Tomorrowland24PromiseInvalidationTokenV2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseInvalidationToken"},"Structs/PromiseInvalidationToken.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseInvalidationToken"},"Structs/PromiseCancellable.html#/s:12Tomorrowland18PromiseCancellableV13requestCancelyyF":{"name":"requestCancel()","abstract":"Requests cancellation of the promise this PromiseCancellable
was created from.
","parent_name":"PromiseCancellable"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7fulfill4withyx_tF":{"name":"fulfill(with:)","abstract":"Fulfills the promise with the given value.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV6reject4withyq__tF":{"name":"reject(with:)","abstract":"Rejects the promise with the given error.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV6cancelyyF":{"name":"cancel()","abstract":"Cancels the promise.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7resolve4withyAA0B6ResultOyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV7resolve4withyACyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with another promise.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV15onRequestCancel0D0_yAA0B7ContextO_yAEyxq__GctF":{"name":"onRequestCancel(on:_:)","abstract":"Registers a block that will be invoked if requestCancel()
is invoked on the promise","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverV18hasRequestedCancelSbvp":{"name":"hasRequestedCancel","abstract":"
Returns whether the promise has already been requested to cancel.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5Error_pRs_rlE7resolve4withyAA0B6ResultOyxqd__G_tsAFRd__lF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5Error_pRs_rlE14handleCallback08isCancelD0yxSg_sAF_pSgtcSbsAF_pc_tF":{"name":"handleCallback(isCancelError:)","abstract":"Convenience method for handling framework callbacks.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html#/s:12Tomorrowland7PromiseV8ResolverVAAs5ErrorR_rlE7resolve4withys6ResultOyxq_G_tF":{"name":"resolve(with:)","abstract":"Resolves the promise with the given result.
","parent_name":"Resolver"},"Structs/Promise/Resolver.html":{"name":"Resolver","abstract":"A Resolver
is used to fulfill, reject, or cancel its associated Promise
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6resultAA0B6ResultOyxq_GSgvp":{"name":"result","abstract":"Returns the result of the promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV16makeWithResolverACyxq_G_AC0E0Vyxq__GtyFZ":{"name":"makeWithResolver()","abstract":"Returns a Promise
and a Promise.Resolver
that can be used to fulfill that promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on_ACyxq_GAA0B7ContextO_yAC8ResolverVyxq__Gctcfc":{"name":"init(on:_:)","abstract":"Returns a new Promise
that will be resolved using the given block.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9fulfilledACyxq_Gx_tcfc":{"name":"init(fulfilled:)","abstract":"Returns a Promise
that is already fulfilled with the given value.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8rejectedACyxq_Gq__tcfc":{"name":"init(rejected:)","abstract":"Returns a Promise
that is already rejected with the given error.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4withACyxq_GAA0B6ResultOyxq_G_tcfc":{"name":"init(with:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4then2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyxctF":{"name":"then(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3map2on5token_ACyqd__q_GAA0B7ContextO_AA0B17InvalidationTokenVSgqd__xctlF":{"name":"map(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7flatMap2on5token_ACyqd__q_GAA0B7ContextO_AA0B17InvalidationTokenVSgAGxctlF":{"name":"flatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV5catch2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyq_ctF":{"name":"catch(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7recover2on5token_ACyxAA7NoErrorOGAA0B7ContextO_AA0B17InvalidationTokenVSgxq_ctF":{"name":"recover(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8mapError2on5token_ACyxqd__GAA0B7ContextO_AA0B17InvalidationTokenVSgqd__q_ctlF":{"name":"mapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV12flatMapError2on5token_ACyxqd__GAA0B7ContextO_AA0B17InvalidationTokenVSgAGq_ctlF":{"name":"flatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV11tryMapError2on5token_ACyxs0E0_pGAA0B7ContextO_AA0B17InvalidationTokenVSgqd__q_KctsAGRd__lF":{"name":"tryMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV15tryFlatMapError2on5token_ACyxs0F0_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyxqd__Gq_KctsAGRd__lF":{"name":"tryFlatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/tryMapError(on:token:_:)":{"name":"tryMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMapError(on:token:_:)":{"name":"tryFlatMapError(on:token:_:)","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6always2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyAA0B6ResultOyxq_GctF":{"name":"always(on:token:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9mapResult2on5token_ACyqd__qd_0_GAA0B7ContextO_AA0B17InvalidationTokenVSgAA0bD0Oyqd__qd_0_GANyxq_Gctr0_lF":{"name":"mapResult(on:token:_:)","abstract":"Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV13flatMapResult2on5token_ACyqd__qd_0_GAA0B7ContextO_AA0B17InvalidationTokenVSgAgA0bE0Oyxq_Gctr0_lF":{"name":"flatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV12tryMapResult2on5token_ACyqd__s5Error_pGAA0B7ContextO_AA0B17InvalidationTokenVSgAA0bE0Oyqd__qd_0_GAOyxq_GKctsAGRd_0_r0_lF":{"name":"tryMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV16tryFlatMapResult2on5token_ACyqd__s5Error_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyqd__qd_0_GAA0bF0Oyxq_GKctsAGRd_0_r0_lF":{"name":"tryFlatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/tryMapResult(on:token:_:)":{"name":"tryMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMapResult(on:token:_:)":{"name":"tryFlatMapResult(on:token:_:)","abstract":"
Registers a callback that will be invoked with the promise result, no matter what it is, and","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3tap2on5token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyAA0B6ResultOyxq_GctF":{"name":"tap(on:token:_:)","abstract":"
Registers a callback that will be invoked when the promise is resolved without affecting behavior.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV3tapACyxq_GyF":{"name":"tap()","abstract":"Returns a new Promise
that adopts the result of the receiver without affecting its behavior.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV8onCancel0C05token_ACyxq_GAA0B7ContextO_AA0B17InvalidationTokenVSgyyctF":{"name":"onCancel(on:token:_:)","abstract":"Registers a callback that will be invoked when the promise is cancelled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV23propagatingCancellation2on15cancelRequestedACyxq_GAA0B7ContextO_yAGctF":{"name":"propagatingCancellation(on:cancelRequested:)","abstract":"Returns a promise that adopts the same value as the receiver, and propagates cancellation","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9makeChildACyxq_GyF":{"name":"makeChild()","abstract":"
Returns a promise that adopts the same value as the receiver.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV4forkyACyxq_GyAEKXEKF":{"name":"fork(_:)","abstract":"Passes the Promise
to a block and then returns the Promise
for further chaining.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV13requestCancelyyF":{"name":"requestCancel()","abstract":"Requests that the Promise
should be cancelled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV25requestCancelOnInvalidateyACyxq_GAA0B17InvalidationTokenVF":{"name":"requestCancelOnInvalidate(_:)","abstract":"Requests that the Promise
should be cancelled when the token is invalidated.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV14ignoringCancelACyxq_GyF":{"name":"ignoringCancel()","abstract":"Returns a new Promise
that adopts the value of the receiver but ignores cancel requests.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV6resultACyxq_GAA0B6ResultOyxq_G_tcfc":{"name":"init(result:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on6result5afterACyxq_GAA0B7ContextO_AA0B6ResultOyxq_GSdtcfc":{"name":"init(on:result:after:)","abstract":"Returns a Promise
that resolves with the given result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV21requestCancelOnDeinityACyxq_GyXlF":{"name":"requestCancelOnDeinit(_:)","abstract":"Requests that the Promise
should be cancelled when the object deinits.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Two Promise
s compare as equal if they represent the same promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV11cancellableAA0B11CancellableVvp":{"name":"cancellable","abstract":"Returns a value that can be used to cancel this promise without holding onto the full promise.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV9withTokenyAA0dB0Vyxq_GAA0b12InvalidationD0VF":{"name":"withToken(_:)","abstract":"Returns a new TokenPromise
that wraps the receiver.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on9fulfilled5afterACyxq_GAA0B7ContextO_xSdtcfc":{"name":"init(on:fulfilled:after:)","abstract":"Returns a Promise
that fulfills with the given value after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on8rejected5afterACyxq_GAA0B7ContextO_q_Sdtcfc":{"name":"init(on:rejected:after:)","abstract":"Returns a Promise
that rejects with the given error after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV2on4with5afterACyxq_GAA0B7ContextO_AA0B6ResultOyxq_GSdtcfc":{"name":"init(on:with:after:)","abstract":"Returns a Promise
that resolves with the given result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV5delay2on_ACyxq_GAA0B7ContextO_SdtF":{"name":"delay(on:_:)","abstract":"Returns a new Promise
that adopts the receiver’s result after a delay.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseV7timeout2on5delayACyxAA0B12TimeoutErrorOyq_GGAA0B7ContextO_SdtF":{"name":"timeout(on:delay:)","abstract":"Returns a Promise
that is rejected with an error if the receiver does not resolve within","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5ErrorR_rlE6upcastACyxsAD_pGvp":{"name":"upcast","abstract":"
Returns a new promise with an error type of Swift.Error
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVA2A7NoErrorORs_rlE6upcastACyxs0D0_pGvp":{"name":"upcast","abstract":"Returns a new promise with an error type of Swift.Error
.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE2on_ACyxsAD_pGAA0B7ContextO_yAC8ResolverVyxsAD_p_GKctcfc":{"name":"init(on:_:)","abstract":"Returns a new Promise
that will be resolved using the given block.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE7tryThen2on5token_ACyxsAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgyxKctF":{"name":"tryThen(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE6tryMap2on5token_ACyqd__sAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgqd__xKctlF":{"name":"tryMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/tryFlatMap(on:token:_:)":{"name":"tryFlatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE10tryFlatMap2on5token_ACyqd__sAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgACyqd__qd_0_GxKctsADRd_0_r0_lF":{"name":"tryFlatMap(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is fulfilled.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE10tryRecover2on5token_ACyxsAD_pGAA0B7ContextO_AA0B17InvalidationTokenVSgxsAD_pKctF":{"name":"tryRecover(on:token:_:)","abstract":"Registers a callback that is invoked when the promise is rejected.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5ErrorR_rlE4withACyxq_Gs6ResultOyxq_G_tcfc":{"name":"init(with:)","abstract":"Returns a Promise
that is already resolved with the given result.
","parent_name":"Promise"},"Structs/Promise.html#/s:12Tomorrowland7PromiseVAAs5Error_pRs_rlE7timeout2on5delayACyxsAD_pGAA0B7ContextO_SdtF":{"name":"timeout(on:delay:)","abstract":"Returns a Promise
that is rejected with an error if the receiver does not resolve within","parent_name":"Promise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV8Resolvera":{"name":"Resolver","abstract":"
The type of the promise resolver. See Promise<Value,Error>.Resolver
.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV2on_ACyxq_GAA0C7ContextO_yAA0C0V8ResolverVyxq__Gctcfc":{"name":"init(on:_:)","abstract":"Returns a new DelayedPromise
that can be resolved with the given block.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV7promiseAA0C0Vyxq_Gvp":{"name":"promise","abstract":"Returns a Promise
that asynchronously contains the value of the computation.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html#/s:12Tomorrowland14DelayedPromiseV2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Two DelayedPromise
s compare as equal if they would produce equal Promise
s.
","parent_name":"DelayedPromise"},"Structs/DelayedPromise.html":{"name":"DelayedPromise","abstract":"DelayedPromise
is like a Promise
but it doesn’t invoke its callback until the .promise
"},"Structs/Promise.html":{"name":"Promise","abstract":"
A Promise
is a construct that will eventually hold a value or error, and can invoke callbacks"},"Structs/PromiseCancellable.html":{"name":"PromiseCancellable","abstract":"
A type that can be used to cancel a promise without holding onto the full promise.
"},"Structs/PromiseInvalidationToken.html":{"name":"PromiseInvalidationToken","abstract":"An invalidation token that can be used to cancel callbacks registered to a Promise
.
"},"Structs/TokenPromise.html":{"name":"TokenPromise","abstract":"A Promise
adapter that automatically applies a PromiseInvalidationToken
.
"},"Functions.html#/s:12Tomorrowland4when9fulfilled3qos15cancelOnFailureAA7PromiseVySayxGq_GSayAGyxq_GG_8Dispatch0I3QoSV0J6SClassOSbtr0_lF":{"name":"when(fulfilled:qos:cancelOnFailure:)","abstract":"Waits on an array of Promise
s and returns a Promise
that is fulfilled with an array of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled_____3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_q2_q3_tq4_GAGyxq4_G_AGyq_q4_GAGyq0_q4_GAGyq1_q4_GAGyq2_q4_GAGyq3_q4_G8Dispatch0I3QoSV0J6SClassOSbtr5_lF":{"name":"when(fulfilled:_:_:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled____3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_q2_tq3_GAGyxq3_G_AGyq_q3_GAGyq0_q3_GAGyq1_q3_GAGyq2_q3_G8Dispatch0I3QoSV0J6SClassOSbtr4_lF":{"name":"when(fulfilled:_:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled___3qos15cancelOnFailureAA7PromiseVyx_q_q0_q1_tq2_GAGyxq2_G_AGyq_q2_GAGyq0_q2_GAGyq1_q2_G8Dispatch0I3QoSV0J6SClassOSbtr3_lF":{"name":"when(fulfilled:_:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled__3qos15cancelOnFailureAA7PromiseVyx_q_q0_tq1_GAGyxq1_G_AGyq_q1_GAGyq0_q1_G8Dispatch0I3QoSV0J6SClassOSbtr2_lF":{"name":"when(fulfilled:_:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when9fulfilled_3qos15cancelOnFailureAA7PromiseVyx_q_tq0_GAGyxq0_G_AGyq_q0_G8Dispatch0I3QoSV0J6SClassOSbtr1_lF":{"name":"when(fulfilled:_:qos:cancelOnFailure:)","abstract":"
Waits on a tuple of Promise
s and returns a Promise
that is fulfilled with a tuple of the"},"Functions.html#/s:12Tomorrowland4when5first15cancelRemainingAA7PromiseVyxq_GSayAGG_Sbtr0_lF":{"name":"when(first:cancelRemaining:)","abstract":"
Returns a Promise
that is resolved with the result of the first resolved input Promise
.
"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorO8timedOutyACyxGAEmlF":{"name":"timedOut","abstract":"The promise did not resolve within the given interval.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorO8rejectedyACyxGxcAEmlF":{"name":"rejected(_:)","abstract":"The promise was rejected with an error.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:10Foundation13CustomNSErrorP13errorUserInfoSDySSypGvp":{"name":"errorUserInfo","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorOAASQRzlE2eeoiySbACyxG_AEtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:12Tomorrowland19PromiseTimeoutErrorOAASQRzlE2neoiySbACyxG_AEtFZ":{"name":"!=(_:_:)","abstract":"Returns a Boolean value indicating whether two values are not equal.
","parent_name":"PromiseTimeoutError"},"Enums/PromiseTimeoutError.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseTimeoutError"},"Enums/NoError.html#/s:12Tomorrowland7NoErrorO2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"NoError"},"Enums/NoError.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"NoError"},"Enums/NoError.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"NoError"},"Enums/NoError.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"NoError"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5valueyACyxq_GxcAEmr0_lF":{"name":"value(_:)","abstract":"The value the promise was fulfilled with.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5erroryACyxq_Gq_cAEmr0_lF":{"name":"error(_:)","abstract":"The error the promise was rejected with.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO9cancelledyACyxq_GAEmr0_lF":{"name":"cancelled","abstract":"The promise was cancelled.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5valuexSgvp":{"name":"value","abstract":"Returns the contained value if the result is .value
, otherwise nil
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO5errorq_Sgvp":{"name":"error","abstract":"Returns the contained error if the result is .error
, otherwise nil
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO11isCancelledSbvp":{"name":"isCancelled","abstract":"Returns true
if the result is .cancelled
, otherwise false
.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO3mapyACyqd__q_Gqd__xKXEKlF":{"name":"map(_:)","abstract":"Maps a successful result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO8mapErroryACyxqd__Gqd__q_KXEKlF":{"name":"mapError(_:)","abstract":"Maps a rejected result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO7flatMapyACyqd__q_GAExKXEKlF":{"name":"flatMap(_:)","abstract":"Maps a successful result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultO12flatMapErroryACyxqd__GAEq_KXEKlF":{"name":"flatMapError(_:)","abstract":"Maps a rejected result through a block and returns the new result.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAASQRzSQR_rlE2eeoiySbACyxq_G_AEtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAASQRzSQR_rlE2neoiySbACyxq_G_AEtFZ":{"name":"!=(_:_:)","abstract":"Returns a Boolean value indicating whether two values are not equal.
","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:SE6encode2toys7Encoder_p_tKF":{"name":"encode(to:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:Se4fromxs7Decoder_p_tKcfc":{"name":"init(from:)","parent_name":"PromiseResult"},"Enums/PromiseResult.html#/s:12Tomorrowland13PromiseResultOAAs5ErrorR_rlEyACyxq_Gs0C0Oyxq_Gcfc":{"name":"init(_:)","abstract":"Returns a PromiseResult
from a Result
.
","parent_name":"PromiseResult"},"Enums/PromiseCallbackError.html#/c:@M@Tomorrowland@E@TWLPromiseCallbackError@TWLPromiseCallbackErrorAPIMismatch":{"name":"apiMismatch","abstract":"The callback did not conform to the expected API.
","parent_name":"PromiseCallbackError"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO4mainyA2CmF":{"name":"main","abstract":"Execute on the main queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO10backgroundyA2CmF":{"name":"background","abstract":"Execute on a dispatch queue with the .background
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO7utilityyA2CmF":{"name":"utility","abstract":"Execute on a dispatch queue with the .utility
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO7defaultyA2CmF":{"name":"default","abstract":"Execute on a dispatch queue with the .default
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO13userInitiatedyA2CmF":{"name":"userInitiated","abstract":"Execute on a dispatch queue with the .userInitiated
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO15userInteractiveyA2CmF":{"name":"userInteractive","abstract":"Execute on a dispatch queue with the .userInteractive
QoS.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO5queueyACSo012OS_dispatch_D0CcACmF":{"name":"queue(_:)","abstract":"Execute on the specified dispatch queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO14operationQueueyACSo011NSOperationE0CcACmF":{"name":"operationQueue(_:)","abstract":"Execute on the specified operation queue.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO9immediateyA2CmF":{"name":"immediate","abstract":"Execute synchronously.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO5nowOryA2CcACmF":{"name":"nowOr(_:)","abstract":"Execute synchronously if the promise is already resolved, otherwise use another context.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO4autoACvpZ":{"name":"auto","abstract":"Returns .main
when accessed from the main thread, otherwise .default
.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO14isExecutingNowSbvpZ":{"name":"isExecutingNow","abstract":"Returns whether a .nowOr(_:)
context is executing synchronously.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO3qosAC8Dispatch0E3QoSV0F6SClassO_tcfc":{"name":"init(qos:)","abstract":"Returns the PromiseContext
that corresponds to a given Dispatch QoS class.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html#/s:12Tomorrowland14PromiseContextO2eeoiySbAC_ACtFZ":{"name":"==(_:_:)","abstract":"Returns a Boolean value indicating whether two values are equal.
","parent_name":"PromiseContext"},"Enums/PromiseContext.html":{"name":"PromiseContext","abstract":"The context in which a Promise body or callback is evaluated.
"},"Enums/PromiseCallbackError.html":{"name":"PromiseCallbackError","abstract":"An error potentially returned from Promise.Resolver.handleCallback(isCancelError:)
.
"},"Enums/PromiseResult.html":{"name":"PromiseResult","abstract":"The result of a resolved promise.
"},"Enums/NoError.html":{"name":"NoError","abstract":"NoError
is a type that cannot be constructed.
"},"Enums/PromiseTimeoutError.html":{"name":"PromiseTimeoutError","abstract":"The error type returned from Promise.timeout
.
"},"Enums.html":{"name":"Enumerations","abstract":"The following enumerations are available globally.
"},"Functions.html":{"name":"Functions","abstract":"The following functions are available globally.
"},"Structs.html":{"name":"Structures","abstract":"The following structures are available globally.
"},"Typealiases.html":{"name":"Type Aliases","abstract":"The following type aliases are available globally.
"}}
\ No newline at end of file
diff --git a/docs/docsets/Tomorrowland.docset/Contents/Resources/docSet.dsidx b/docs/docsets/Tomorrowland.docset/Contents/Resources/docSet.dsidx
index 9cfae1ada0eba0ec8c3d0922274056eff06e2c08..1f85035c25b180ef04365fbed985606cbb30399d 100644
GIT binary patch
delta 2370
zcmZWqX;4*H5@X_K1
zZpj#9G|AwNqDDd7aW^qqI#r`i)zplrL8s=&WSpwZ!I;!c&HZt1b)Qq!-CuuScl{H#
z{t3I)3aZm{mRTi1v(6g`A&e=Am^PV$R3DdKqZ(v7>oUQUy0z=*Atup7h@=Pa%@{fe
zr|$!5=#5c^9@9qSH~PMA`KTU`PyAkEiX*;G*#}PtZiI9-Du@Rzi$0BX$_{J}u7m^a
zAzo3sD%}!YppMgC);4RGX?4;gX^#{o8O1YVrMN`&CbH1M5Am72#2w&fXbx(^*_-TA
zrVsuGxge4*XY>e^L&iflnkVH$Ce}_$g}v&ZCf#9R3w|A%2Pvw@`xyXTSQnNA2k~Lp
zCfKcJPE7})%8&E0`ZKuUnN1{rh~a$P^8t%eB2gFqR4AU#O?I2ZpgDd7ZXYz`qXDx>
zz6{|4+#C!p9vsJzBlt3W4pd@)$Rs$7VG$0fzyy1w@I?S;wS)rhpXP>JBlJSKA7^#5
zGdOY3#*m}<-0lxwV^@eDe1&@=LWQzS-eyrIpo_y@eHCE=SdCgoj!;@T>|Thk9iBAy
zOnl%Nfm>#X_;*J>Y{S)&>F_!BM}8oF^vgR2`v!^_(ul1yO6GTHDa^hkg_w?;GEJhf
z%NStjF^to1(VKPE+Phj`DTe}lSezy_3L@Xf7xNxmFPEtKtENF?WG}N-tSeIsub`6r
zg`^Avyl3V{DNS+VM_ZIyz}vf8#GI;OWB#xah5w$_3$prcOgz9&)WpU?GtP@G6?bLw
zqpS)A7+$Vq$ftNN_C6%xj<{~vh;!l>@Z00L(UwA75I+(ZUNvJ-yazO?PvcV0veIQvfIqWZW5`(A-?p@rvetqNWAd5gVzhUxf+B3|*h2C1++I$J)4sh23NT^E
zO+KF^5tcQ$Xvbt+w9^84n76YVa?x|wQOLo8U0Y!dChg7>vUy^$DS?=}I}%-Xi>N`*Z-6VJ-SKrsd#Rhha%ZJlC4*11HKaki
z(+$scUxD@5eC!`kqt>bv#C6#4&1njy<9H8OsP!h}o$?qQb)pG2;Gq*o#oRoe<{kz#
z`3zc4Ur!cQoBzoQNL9N|N*wIR&(0RYK6LF(g*{l_n*^`E|qV!k4Ti
zCY^DNVKJRB8eO~2LwisgC>@tlB%OF(Tqgz#7llMh`>p&G?k1O^8PaUfXjmuf#oT7<
zm=HJvc5FqGH8I=aK~v+BU0_k59uCR#q%{uD_HY$x(Gy
z;+fg8rUi=ouu+?}HlrvrYb-*%JKkwDVRe+JI8XWA@Le@7jE|Fw6}PtnpG~Kwl|Bi?
z;tPJF>n}bBo*VFZ=QLt`q^ne=jCeaSX5;JmCB{PKy|?U{mR*omHXl=(V)5QZFTug8m?z!NH0cU<4Qgw0d*ICQxHbhz?L
zK4|gkl{}De^3?UdFAS$#NKrYT-r`)M49=i%^S8Z{8Eu^JJJZ?-;`>B{gWg
z{m-DsM4T%e7Q*@Sd?q)$Erw4G?)n;ysPZB`|k!OrWsT2fCz3brURpkYIc
z`oqI&6WDR#v+)pu>z?^RFz$Qi4?%e8nI9j>5xRu`dk3?=%0vtp^n(dFZ!iSLW9?uh
zjKed7lVB_k4W^p{D1GSO%w3yXHdZbw#i!@pus$*vgEslIg~}Mb@w^E9ar%oS!H*|&
zJ&ndEN-~>H|8HJofiI@LYz7}3d|3hBnD(PAjN(avRSCu~&t|c!6)%h)N)>Fh$yUV&
It-Xo=0UZVjN&o-=
delta 2215
zcmZWqYfuzd7QUx@`Z+I&A`auIBOp-(2IFW12Si>mpeU{pK@{X6&p?AXpdvQP@(=^V
z5fKC*$wm`mOrU)wu7irGs7b6f(Xuw>n*Eby#7AmV~KNLX4Lu1)0^dSgi&=O$}V6
z8rWHszL_w(0a{IThGqH-#(Kk9-9W!|Oo!Lz-)9quF@XfTr1|)5a6M!x%R*RSa@5U{
zF3Ew7p-wp7Zkw@;^uSZ{yS5VE*DfYk#b;oGCb3Q2B(k>n5vBtDYc=e1^el=?fbZ=4gi?#sg
zjAg7oMS!K7Bk|I^zd$K!!&ks|Yz%imB{C6#unl`7>|8|-Yca_|ILYCoyo@jbWT5EC
z=gOVqOJ}tU7z-~Hd_2utP|f7GWcKk!~6>FpIj#w#$F+v
zY!a(s&NC^ROPUb+9PLN-;<@Da`NkY}rdd|8f@d4O$;T?4lhyZsAIwQ!4TrF2RS`5J
zpPUW{FmTm2ka6>}dLdJu#QK@!8o;csCVp$xc(QUlS%&UtHTt^+}u5#G~A2Z0z054+RlmiN>88?LSDUOA10~Q!At+*IW%JQEo1UPnC81X9KfEWv*M*l+>pa_3H^c@spU*{Sqz&D-!kdJ2$pN6fN-qi+qIM!7NxwyVN4|34m
zeL$V@q$9;8i|?UGDLMTbm=9HSXSx
zqdO99-2v)F1~25Q7YVqy9X2aH7X=26;mOM-a1^JwGoc47-D%K*_uPfhgb{<+SJsSs
z`)pE5j9SAS{Tf}1PNPMwSv)C*2_+qbxD47u53o>%2x2jM_1B0lM0ksF2dqPGA+r|aPVpc>%*wDIdOMP
zJiSVuit@G9toL}S8m;j&&=zaNhJ0VTOrC<)p>lrm1n+SU931gg7en!Jln!4GO@+6R
zyS{_-n$W-!bg$ehN~(>J0FxY5f|jI2j2*U$Mpo64Z2#{pOa}wr8_whOEb+0(CNw6m
z6;fs0MCOCL+$nUSti|Uyib2Hmn?)et&6|ZRKi-~%my%=XIGMwmTL~;XUMf*L_L(rF
zXYnR_jm)57WG$zeXo*qRR??L+jTc9pK%won697NEy$uLj?reuz?6@PTG;((vpaxs-
zUWZ-yhwpymcCutb4s8S8<8q+o@*QaS;a?$72%p6DaS`kgo6EdpoSG-bb%rj3N&ku7
zN4HbwtG%O@#4#~Rcp${`_xq*O8vNUjhxpVgHp(Q20lJP#szzV@^cU5%u03$V9wq$Y
zVNhqtVwR%;kK8E`YE}F~O|k^2uWeF(dQ@!$8zzs=gHYTt>JK4!Y&3ukW=Me9in}8$
zbhtbpJ)=t@2m?L-Fb|VFHkgYwo=A8b|Lj=+f%w9+g`2|?>-fLQ&@9mALZ~u_eBLDyZ
diff --git a/docs/docsets/Tomorrowland.tgz b/docs/docsets/Tomorrowland.tgz
index 2f88f80c37354ba2b7ea2eb1dec914b1ba16a720..1a62290624b9e9c6291f4af464bdcb730623331d 100644
GIT binary patch
delta 109787
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