List
containing the
fulfillment values of each input promise, provided every promise resolves successfully.this
is already in
a resolved state.Promise
created using PromiseFactory
, so that we can resolve a promise after the fact.Iterable.forEach(Consumer)
.REJECTED
, and return a new promise,
that will resolve with the same state and value as the callback's returned promise, after the callback
promise resolves.REJECTED
, and return a new promise,
that will fulfill with the value accepted within the callback, into it's second argument, a Consumer
.REJECTED
, otherwise returning null
.PromiseRunnable
instances (promise callbacks, etc) with a provided executor.FULFILLED
with the provided value.Promise
implementation sans then, except, and always.PromiseRunnable
instances.PromiseRunnable
.CompletionStage
.REJECTED
promise, with a provided reason for rejection.ArrayList
, performing PromiseApi.resolve(Object, Class)
on each element.this
is resolved (not PENDING
).FULFILLED
of this, and return a new promise,
that will resolve with the same state and value as the callback's returned promise, after the callback
promise resolves.FULFILLED
of this, and return a new promise,
that will fulfill with the value accepted within the callback, into it's second argument, a Consumer
.FULFILLED
, otherwise returning null
.CompletableFuture
.PromiseFactory
, from any given promise, that will resolve in the same
way.CompletionStage
as a base, create a new PromiseStage
, that will resolve
with the same state and value as the provided Promise
.