Monad, which is compatible with passing data via callbacks.
Interoperability with Future: allows
async[F]{ .. await[Future](..) ... }
Attributes
- Companion:
- object
- Graph
- Supertypes
- trait CpsTryMonad[F]trait CpsThrowMonad[F]trait CpsMonad[F]trait CpsAwaitable[F]class Objecttrait Matchableclass Any
- Known subtypes
- trait CpsAsyncEffectMonad[F]trait CpsConcurrentEffectMonad[F]trait CpsConcurrentMonad[F]trait CpsSchedulingMonad[F]class FutureAsyncMonadAPI
Members list
Type members
Inherited types
Attributes
- Inherited from:
- CpsMonad
Value members
Abstract methods
called by the source, which accept callback inside
called by the source, which accept callback inside
Attributes
Inherited methods
run op in the context environment.
represent error e
in monadic context.
bind combinator, which compose f
over fa
flatMap over result of checked evaluation of A
transform r
into pure value or error.
Lazy variant of pure, which by default - create monadic expression according to the choosen monad types. (i.e. delaing for effect monads, starting for eager monand, pure by defiault)
Lazy variant of pure, which by default - create monadic expression according to the choosen monad types. (i.e. delaing for effect monads, starting for eager monand, pure by defiault)
Attributes
- Inherited from:
- CpsMonad
map a function f
over fa
map over result of checked evaluation of A
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
Attributes
- Inherited from:
- CpsTryMonad
Pure - wrap value t
inside monad.
Pure - wrap value t
inside monad.
Note, that pure use eager evaluation, which is different from Haskell.
Attributes
- Inherited from:
- CpsMonad
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
restore fa, ie if fa sucessful - return fa, otherwise apply fx to received error.
Attributes
- Inherited from:
- CpsTryMonad
try to evaluate async operation and wrap successful or failed result into F
.
try to evaluate async operation and wrap successful or failed result into F
.
Attributes
- Inherited from:
- CpsTryMonad
try to evaluate synchonious operation and wrap successful or failed result into F
.
try to evaluate synchonious operation and wrap successful or failed result into F
.
Attributes
- Inherited from:
- CpsTryMonad
async shift of tryPure.
ensure that action
will run before getting value from fa
async shift of withAction
.
async shift of withAction
.
This method is substituted instead withAction, when we use await
inside withAction
argument.
Attributes
- Inherited from:
- CpsTryMonad
return result of fa
after completition of action
.