Monad, where we can define an effect of starting operation in different execution flow.
- Companion:
- object
Type members
Types
Inherited types
Value members
Abstract methods
join the op
computation: i.e. result is op
which will become available
after the spawned execution will be done.
join the op
computation: i.e. result is op
which will become available
after the spawned execution will be done.
Concrete methods
Inherited methods
called by the source, which accept callback inside
called by the source, which accept callback inside
- Inherited from:
- CpsAsyncMonad
represent error e
in monadic context.
represent error e
in monadic context.
- Inherited from:
- CpsTryMonad
bind combinator, which compose f
over fa
bind combinator, which compose f
over fa
- Inherited from:
- CpsMonad
flatMap over result of checked evaluation of A
flatMap over result of checked evaluation of A
- Inherited from:
- CpsTryMonad
transform r
into pure value or error.
transform r
into pure value or error.
- Inherited from:
- CpsTryMonad
map over result of checked evaluation of A
map over result of checked evaluation of A
- Inherited from:
- CpsTryMonad
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
- 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.
- 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.
- 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
.
- 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
.
- Inherited from:
- CpsTryMonad
ensure that action
will run before getting value from fa
ensure that action
will run before getting value from fa
- Inherited from:
- CpsTryMonad
async shift of withAction
.
async shift of withAction
.
This method is substituted instead withAction, when we use await
inside withAction
argument.
- Inherited from:
- CpsTryMonad
return result of fa
after completition of action
.
return result of fa
after completition of action
.
- Inherited from:
- CpsTryMonad