CatsConcurrent
Attributes
- Graph
-
- Supertypes
-
trait CpsConcurrentEffectMonadInstanceContext[F]trait CpsConcurrentMonadInstanceContext[F]trait CpsConcurrentEffectMonad[F]trait CpsConcurrentMonad[F]class CatsAsync[F]trait CpsAsyncEffectMonadInstanceContext[F]trait CpsAsyncMonadInstanceContext[F]trait CpsAsyncEffectMonad[F]trait CpsTryEffectMonad[F]trait CpsEffectMonad[F]trait CpsAsyncMonad[F]class CatsMonadThrow[F]trait CpsTryMonadInstanceContext[F]trait CpsTryMonad[F]trait CpsTrySupport[F]trait CpsThrowMonad[F]trait CpsThrowSupport[F]trait CatsMonad[F]trait CpsMonad[F]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class CatsIOCpsAsyncMonad
Members list
Type members
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
Value members
Concrete 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.
Attributes
spawn execution of operation in own execution flow.
spawn execution of operation in own execution flow.
Attributes
Inherited methods
called by the source, which accept callback inside
run op in the context environment.
run op in the context environment.
Attributes
- Definition Classes
-
CpsTryMonadInstanceContext -> CpsMonad
- Inherited from:
- CpsTryMonadInstanceContext
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
For effect monads it is usually the same, as pure, but unlike pure, argument of evaluation is lazy.
For effect monads it is usually the same, as pure, but unlike pure, argument of evaluation is lazy.
Note, that delay is close to original return
in haskell with lazy evaluation semantics. So, for effect monads, representing pure as eager function is a simplification of semantics, real binding to monads in math sence, should be with delay
instead pure
Attributes
- Inherited from:
- CpsEffectMonad
Delayed evaluation of unit. If you want to override this for you monad, you should overrid delayed to.
Delayed evaluation of unit. If you want to override this for you monad, you should overrid delayed to.
Attributes
- Inherited from:
- CpsEffectMonad
represent error e
in monadic context.
shortcat for delayed evaluation of effect.
shortcat for delayed evaluation of effect.
Attributes
- Inherited from:
- CpsEffectMonad
bind combinator, which compose f
over fa
flatMap over result of checked evaluation of A
Wrap and flatten of monadic expression..
Wrap and flatten of monadic expression..
Attributes
- Definition Classes
-
CpsEffectMonad -> CpsMonad
- Inherited from:
- CpsEffectMonad
Attributes
- Inherited from:
- CpsMonad
transform r
into pure value or error.
transform r
into pure value or error.
Attributes
- Inherited from:
- CpsTryMonad
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
-
CatsMonadThrow -> CpsTryMonad
- Inherited from:
- CatsMonadThrow
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:
- CatsMonad
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.
async shift of tryPure.
Attributes
- Inherited from:
- CpsTryMonad
ensure that action
will run before getting value from fa
ensure that action
will run before getting value from fa
Attributes
- Inherited from:
- CpsTryMonad
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
.
return result of fa
after completition of action
.
Attributes
- Inherited from:
- CpsTryMonad
Attributes
- Inherited from:
- CpsTrySupport
Attributes
- Inherited from:
- CpsTrySupport
synonim for delay
synonim for delay
Attributes
- Definition Classes
-
CpsEffectMonad -> CpsMonad
- Inherited from:
- CpsEffectMonad