CpsConcurrentContextMonad
Attributes
- Source
- CpsMonadContext.scala
- Graph
-
- Supertypes
-
trait CpsConcurrentMonad[F]trait CpsAsyncMonad[F]trait CpsTryMonad[F]trait CpsTrySupport[F]trait CpsThrowMonad[F]trait CpsThrowSupport[F]trait CpsMonad[F]class Objecttrait Matchableclass AnyShow all
Members list
Type members
Types
Attributes
- Source
- CpsMonadContext.scala
Inherited types
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
Inherited and Abstract types
Spawned[A] is a computation, which is executed in own flow. (i.e. Fiber, Future, etc ..)
Spawned[A] is a computation, which is executed in own flow. (i.e. Fiber, Future, etc ..)
Attributes
- Inherited from:
- CpsConcurrentMonad
- Source
- CpsMonad.scala
Value members
Inherited methods
delegated to applyContext
delegated to applyContext
Attributes
- See also
-
applyContext
- Definition Classes
- Inherited from:
- CpsTryContextMonad
- Source
- CpsMonadContext.scala
join two computations in such way, that they will execute concurrently.
join two computations in such way, that they will execute concurrently.
Attributes
- Inherited from:
- CpsConcurrentMonad
- Source
- CpsMonad.scala
Wrap and flatten of monadic expression..
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
transform r
into pure value or error.
map over result of checked evaluation of A
map over result of checked evaluation of A
Attributes
- Inherited from:
- CpsTryMonad
- 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
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
- 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
Create monadic expression according to the default operation of choosen monad types. (i.e. delaying for effect monads, starting for eager monand, pure by default)
Create monadic expression according to the default operation of choosen monad types. (i.e. delaying for effect monads, starting for eager monand, pure by default)
Attributes
- Inherited from:
- CpsMonad
- Source
- CpsMonad.scala
Inherited and Abstract methods
called by the source, which accept callback inside
called by the source, which accept callback inside
Attributes
- Inherited from:
- CpsAsyncMonad
- Source
- CpsMonad.scala
Evaluate operation in context.
Evaluate operation in context.
Attributes
- Inherited from:
- CpsContextMonad
- Source
- CpsMonadContext.scala
represent error e
in monadic context.
bind combinator, which compose f
over fa
flatMap over result of checked evaluation of A
flatMap over result of checked evaluation of A
Attributes
- Inherited from:
- CpsTryMonad
- Source
- CpsMonad.scala
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.
Attributes
- Inherited from:
- CpsConcurrentMonad
- Source
- CpsMonad.scala
map a function f
over fa
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
- Source
- CpsMonad.scala
spawn execution of operation in own execution flow.
spawn execution of operation in own execution flow.
Attributes
- Inherited from:
- CpsConcurrentMonad
- Source
- CpsMonad.scala
Send cancel signal, which can be accepted or rejected by op
flow.
Send cancel signal, which can be accepted or rejected by op
flow.
Attributes
- Inherited from:
- CpsConcurrentMonad
- Source
- CpsMonad.scala