FutureAsyncMonadAPI
Default CpsMonad implementation for Future
Attributes
- Source
- FutureAsyncMonad.scala
- Graph
-
- Supertypes
-
trait CpsSchedulingMonad[Future]trait CpsConcurrentMonad[Future]trait CpsAsyncMonad[Future]trait CpsTryMonad[Future]trait CpsTrySupport[Future]trait CpsThrowMonad[Future]trait CpsThrowSupport[Future]trait CpsMonad[Future]class Objecttrait Matchableclass AnyShow all
Members list
Type members
Types
Attributes
- Source
- FutureAsyncMonad.scala
Attributes
- Source
- FutureAsyncMonad.scala
Attributes
- Source
- FutureAsyncMonad.scala
Inherited types
In eager monad, spawned process can be represented by F[_]
In eager monad, spawned process can be represented by F[_]
Attributes
- Inherited from:
- CpsSchedulingMonad
- Source
- CpsMonad.scala
Value members
Concrete methods
called by the source, which accept callback inside
Evaluate operation in context.
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
Attributes
- Definition Classes
- Source
- FutureAsyncMonad.scala
represent error e
in monadic context.
Attributes
- Source
- FutureAsyncMonad.scala
bind combinator, which compose f
over fa
flatMap over result of checked evaluation of A
map a function f
over fa
map over result of checked evaluation of A
map over result of checked evaluation of A
Attributes
- Definition Classes
- Source
- FutureAsyncMonad.scala
Pure - wrap value t
inside monad.
Pure - wrap value t
inside monad.
Note, that pure use eager evaluation, which is different from Haskell.
Attributes
- Source
- FutureAsyncMonad.scala
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
- Definition Classes
- Source
- FutureAsyncMonad.scala
schedule execution of op somewhere, immediatly. Note, that characteristics of scheduler can vary.
schedule execution of op somewhere, immediatly. Note, that characteristics of scheduler can vary.
Attributes
- Source
- FutureAsyncMonad.scala
returns failed Future, because cancellation is not supported.
returns failed Future, because cancellation is not supported.
Attributes
- Source
- FutureAsyncMonad.scala
Inherited methods
delegated to applyContext
delegated to applyContext
Attributes
- See also
-
applyContext
- Definition Classes
- Inherited from:
- CpsTryContextMonad
- Source
- CpsMonadContext.scala
Wrap and flatten of monadic expression..
Wrap and flatten of monadic expression..
Attributes
- Definition Classes
- Inherited from:
- CpsSchedulingMonad
- Source
- CpsMonad.scala
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
transform r
into pure value or error.
join spawned immediate monad means to receive those spawing monad.
join spawned immediate monad means to receive those spawing monad.
Attributes
- Inherited from:
- CpsSchedulingMonad
- Source
- CpsMonad.scala
synonym for flatMapTry needed for processing awaits inside mapTry.
synonym for flatMapTry needed for processing awaits inside mapTry.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
spawn the process of spawning. Used to unify concurrent operation in lazy and eager monads.
spawn the process of spawning. Used to unify concurrent operation in lazy and eager monads.
Attributes
- Inherited from:
- CpsSchedulingMonad
- Source
- CpsMonad.scala
schedule execution of op somewhere, immediatly. Note, that characteristics of scheduler can vary. TODO: rename to spawn until we not stabilized
schedule execution of op somewhere, immediatly. Note, that characteristics of scheduler can vary. TODO: rename to spawn until we not stabilized
Attributes
- Inherited from:
- CpsSchedulingMonad
- Source
- CpsMonad.scala
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
- Source
- CpsMonad.scala
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
- Source
- CpsMonad.scala
async shift of tryPure.
ensure that action
will run before getting value from fa
ensure that action
will run before getting value from fa
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
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
- Source
- CpsMonad.scala
return result of fa
after completition of action
.
return result of fa
after completition of action
.
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
Attributes
- Inherited from:
- CpsTrySupport
- Source
- CpsMonad.scala
Attributes
- Inherited from:
- CpsTrySupport
- Source
- CpsMonad.scala
spawnSync