TaskManagedCpsMonad

cps.monads.zio.TaskManagedCpsMonad$
object TaskManagedCpsMonad extends ZManagedCpsMonad[Any, Throwable]

Attributes

Graph
Supertypes
class ZManagedCpsMonad[Any, Throwable]
trait CpsMonadInstanceContext[[X] =>> ZManaged[Any, Throwable, X]]
trait CpsTryMonad[[X] =>> ZManaged[Any, Throwable, X]]
trait CpsThrowMonad[[X] =>> ZManaged[Any, Throwable, X]]
trait CpsMonad[[X] =>> ZManaged[Any, Throwable, X]]
trait CpsAwaitable[[X] =>> ZManaged[Any, Throwable, X]]
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Inherited types

type Context = CpsMonadInstanceContextBody[F]

Attributes

Inherited from:
CpsMonadInstanceContext
type F[T] = ZManaged[R, E, T]

Attributes

Inherited from:
ZManagedCpsMonad
type WF[X] = F[X]

Attributes

Inherited from:
CpsMonad

Value members

Inherited methods

def adoptAwait[A](fa: ZManaged[Any, Throwable, A]): F[A]

If is it statically known, that monad is evaluated in this context, then this call is completely eliminated by dotty-cps-async macro

If is it statically known, that monad is evaluated in this context, then this call is completely eliminated by dotty-cps-async macro

Attributes

Returns:

fa

Inherited from:
CpsMonadInstanceContext
def apply[T](op: Context => ZManaged[Any, Throwable, T]): F[T]

run with this instance

run with this instance

Attributes

Inherited from:
CpsMonadInstanceContext
def error[A](e: Throwable): F[A]

represent error e in monadic context.

represent error e in monadic context.

Attributes

Inherited from:
ZManagedCpsMonad
def flatMap[A, B](fa: F[A])(f: A => F[B]): F[B]

bind combinator, which compose f over fa

bind combinator, which compose f over fa

Attributes

Inherited from:
ZManagedCpsMonad
def flatMapTry[A, B](fa: F[A])(f: Try[A] => F[B]): F[B]

flatMap over result of checked evaluation of A

flatMap over result of checked evaluation of A

Attributes

Inherited from:
ZManagedCpsMonad
def fromTry[A](r: Try[A]): F[A]

transform r into pure value or error.

transform r into pure value or error.

Attributes

Inherited from:
CpsTryMonad
def lazyPure[T](op: => T): F[T]

Lazy variant of pure, which by default - create monadic expression according to the choosen monad types. (i.e. delaing for effect monads, starting for eager monand, pure by defiault)

Lazy variant of pure, which by default - create monadic expression according to the choosen monad types. (i.e. delaing for effect monads, starting for eager monand, pure by defiault)

Attributes

Inherited from:
CpsMonad
def map[A, B](fa: F[A])(f: A => B): F[B]

map a function f over fa

map a function f over fa

Attributes

Inherited from:
ZManagedCpsMonad
def mapTry[A, B](fa: ZManaged[Any, Throwable, A])(f: Try[A] => B): F[B]

map over result of checked evaluation of A

map over result of checked evaluation of A

Attributes

Inherited from:
CpsTryMonad
def mapTryAsync[A, B](fa: ZManaged[Any, Throwable, A])(f: Try[A] => ZManaged[Any, Throwable, B]): F[B]

synonym for flatMapTry needed for processing awaits inside mapTry.

synonym for flatMapTry needed for processing awaits inside mapTry.

Attributes

Inherited from:
CpsTryMonad
def pure[A](x: A): ZManaged[R, E, A]

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:
ZManagedCpsMonad
def restore[A](fa: ZManaged[Any, Throwable, A])(fx: Throwable => ZManaged[Any, Throwable, A]): F[A]

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
def tryImpure[A](a: => ZManaged[Any, Throwable, A]): F[A]

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
def tryPure[A](a: => A): F[A]

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
def tryPureAsync[A](a: () => ZManaged[Any, Throwable, A]): F[A]

async shift of tryPure.

async shift of tryPure.

Attributes

Inherited from:
CpsTryMonad
def withAction[A](fa: ZManaged[Any, Throwable, A])(action: => Unit): F[A]

ensure that action will run before getting value from fa

ensure that action will run before getting value from fa

Attributes

Inherited from:
CpsTryMonad
def withActionAsync[A](fa: ZManaged[Any, Throwable, A])(action: () => ZManaged[Any, Throwable, Unit]): F[A]

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
def withAsyncAction[A](fa: ZManaged[Any, Throwable, A])(action: => ZManaged[Any, Throwable, Unit]): F[A]

return result of fa after completition of action.

return result of fa after completition of action.

Attributes

Inherited from:
CpsTryMonad