FutureAsyncMonadAPI
Default CpsMonad implementation for Future
Type members
Inherited types
In eager monad, spawned process can be represented by F[_]
In eager monad, spawned process can be represented by F[_]
- Inherited from:
- CpsSchedulingMonad
Value members
Concrete methods
join two computations in such way, that they will execute concurrently. Since Future computation is already spawned, we can not spawn waiting for results here
join two computations in such way, that they will execute concurrently. Since Future computation is already spawned, we can not spawn waiting for results here
- Definition Classes
Inherited methods
delegated to applyContext
delegated to applyContext
- See also:
applyContext
- Inherited from:
- CpsContextMonad
transform r
into pure value or error.
transform r
into pure value or error.
- Inherited from:
- CpsTryMonad
join spawned immediate monad means to receive those spawing monad.
join spawned immediate monad means to receive those spawing monad.
- Inherited from:
- CpsSchedulingMonad
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
- Inherited from:
- CpsTryMonad
representation of spawnEffect as immediate operation.
representation of spawnEffect as immediate operation.
- Inherited from:
- CpsSchedulingMonad
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