Liking cljdoc? Tell your friends :D

promesa.protocols

A generic promise abstraction and related protocols.

A generic promise abstraction and related protocols.
raw docstring

ICancellableclj/sprotocol

A cancellation abstraction.

A cancellation abstraction.

-cancel!clj/s

(-cancel! _)

-cancelled?clj/s

(-cancelled? _)
sourceraw docstring

ICompletableclj/sprotocol

-reject!clj/s

(-reject! _ e)

Deliver an error to empty promise.

Deliver an error to empty promise.

-resolve!clj/s

(-resolve! _ v)

Deliver a value to empty promise.

Deliver a value to empty promise.
source

IExecutorclj/sprotocol

-run!clj/s

(-run! _ task)

Run a task and return a promise.

Run a task and return a promise.

-submit!clj/s

(-submit! _ task)

Submit a task and return a promise.

Submit a task and return a promise.
source

IPromiseclj/sprotocol

A promise abstraction.

A promise abstraction.

-bindclj/s

(-bind _ f)
(-bind _ f executor)

Apply function to a computation and flatten.

Apply function to a computation and flatten.

-finallyclj/s

(-finally _ f)
(-finally _ f executor)

Apply function to a computation identpendently if is failed or successful; the return value is ignored.

Apply function to a computation identpendently if is failed or
successful; the return value is ignored.

-handleclj/s

(-handle _ f)
(-handle _ f executor)

Apply function to a computation identpendently if is failed or successful and flatten if promise found.

Apply function to a computation identpendently if is failed or
successful and flatten if promise found.

-mapclj/s

(-map _ f)
(-map _ f executor)

Apply function to a computation

Apply function to a computation

-mapErrclj/s

(-mapErr _ f)
(-mapErr _ f executor)

Apply function to a failed computation.

Apply function to a failed computation.

-thenclj/s

(-then _ f)
(-then _ f executor)

Apply function to a computation and flatten if promise found.

Apply function to a computation and flatten if promise found.

-thenErrclj/s

(-thenErr _ f)
(-thenErr _ f executor)

Apply function to a failed computation. and flatten if promise found.

Apply function to a failed computation. and flatten if promise found.
sourceraw docstring

IPromiseFactoryclj/sprotocol

A promise constructor abstraction.

A promise constructor abstraction.

-promiseclj/s

(-promise _)

Create a promise instance from other types

Create a promise instance from other types
sourceraw docstring

ISchedulerclj/sprotocol

A generic abstraction for scheduler facilities.

A generic abstraction for scheduler facilities.

-schedule!clj/s

(-schedule! _ ms func)

Schedule a function to be executed in future.

Schedule a function to be executed in future.
sourceraw docstring

IStateclj/sprotocol

Additional state/introspection abstraction.

Additional state/introspection abstraction.

-extractclj/s

(-extract _)

Extract the current value.

Extract the current value.

-pending?clj/s

(-pending? _)

Retutns true if a promise is pending.

Retutns true if a promise is pending.

-rejected?clj/s

(-rejected? _)

Returns true if a promise is rejected.

Returns true if a promise is rejected.

-resolved?clj/s

(-resolved? _)

Returns true if a promise is resolved.

Returns true if a promise is resolved.
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close