CatsAsync

cps.monads.catsEffect.CatsAsync
class CatsAsync[F[_]](using x$1: Async[F]) extends CatsMonadThrow[F], CpsAsyncEffectMonadInstanceContext[F]

Attributes

Graph
Supertypes
trait CpsAsyncEffectMonadInstanceContext[F]
trait CpsAsyncMonadInstanceContext[F]
trait CpsAsyncEffectMonad[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 Object
trait Matchable
class Any
Show all
Known subtypes

Members list

Type members

Inherited types

override type Context = CpsTryMonadInstanceContextBody[F]

Attributes

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

Attributes

Inherited from:
CpsMonad

Value members

Concrete methods

def adoptCallbackStyle[A](source: (Try[A] => Unit) => Unit): F[A]

called by the source, which accept callback inside

called by the source, which accept callback inside

Attributes

Inherited methods

override def apply[T](op: Context => F[T]): F[T]

run op in the context environment.

run op in the context environment.

Attributes

Definition Classes
CpsTryMonadInstanceContext -> CpsMonad
Inherited from:
CpsTryMonadInstanceContext
def delay[T](x: => T): F[T]

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
def delayedUnit: F[Unit]

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
def error[A](e: Throwable): F[A]

represent error e in monadic context.

represent error e in monadic context.

Attributes

Inherited from:
CatsMonadThrow
def flatDelay[T](x: => F[T]): F[T]

shortcat for delayed evaluation of effect.

shortcat for delayed evaluation of effect.

Attributes

Inherited from:
CpsEffectMonad
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:
CatsMonad
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:
CatsMonadThrow
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
override def lazyPure[T](op: => T): F[T]

synonim for delay

synonim for delay

Attributes

Definition Classes
CpsEffectMonad -> CpsMonad
Inherited from:
CpsEffectMonad
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:
CatsMonad
override def mapTry[A, B](fa: F[A])(f: Try[A] => B): F[B]

map over result of checked evaluation of A

map over result of checked evaluation of A

Attributes

Definition Classes
CatsMonadThrow -> CpsTryMonad
Inherited from:
CatsMonadThrow
def mapTryAsync[A, B](fa: F[A])(f: Try[A] => F[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](a: A): F[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:
CatsMonad
def restore[A](fa: F[A])(fx: Throwable => F[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: => F[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: () => F[A]): F[A]

async shift of tryPure.

async shift of tryPure.

Attributes

Inherited from:
CpsTryMonad
def withAction[A](fa: F[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: F[A])(action: () => F[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: F[A])(action: => F[Unit]): F[A]

return result of fa after completition of action.

return result of fa after completition of action.

Attributes

Inherited from:
CpsTryMonad
def withAsyncErrorHandler[A](fa: F[A])(f: Throwable => F[A]): F[A]

Attributes

Inherited from:
CpsTrySupport
def withAsyncFinalizer[A](fa: F[A])(f: => F[Unit]): F[A]

Attributes

Inherited from:
CpsTrySupport