MonixCpsMonad

cps.monads.monix.MonixCpsMonad$package$.MonixCpsMonad$
object MonixCpsMonad extends CpsConcurrentEffectMonad[Task] with CpsMonadInstanceContext[Task]

CpsMonad for Monix Task

Attributes

Graph
Supertypes
trait CpsMonadInstanceContext[Task]
trait CpsConcurrentEffectMonad[Task]
trait CpsAsyncEffectMonad[Task]
trait CpsEffectMonad[Task]
trait CpsConcurrentMonad[Task]
trait CpsAsyncMonad[Task]
trait CpsTryMonad[Task]
trait CpsMonad[Task]
trait CpsAwaitable[Task]
class Object
trait Matchable
class Any
Self type

Members list

Concise view

Type members

Types

override type Spawned[A] = Fiber[A]

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 types

type Context = CpsMonadInstanceContextBody[F]

Attributes

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

Attributes

Inherited from:
CpsMonad

Value members

Concrete methods

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

called by the source, which accept callback inside

called by the source, which accept callback inside

Attributes

def error[A](e: Throwable): Task[A]

represent error e in monadic context.

represent error e in monadic context.

Attributes

def flatMap[A, B](fa: Task[A])(f: A => Task[B]): Task[B]

bind combinator, which compose f over fa

bind combinator, which compose f over fa

Attributes

def flatMapTry[A, B](fa: Task[A])(f: Try[A] => Task[B]): Task[B]

flatMap over result of checked evaluation of A

flatMap over result of checked evaluation of A

Attributes

def join[A](fiber: Fiber[A]): Task[A]

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

def map[A, B](fa: Task[A])(f: A => B): Task[B]

map a function f over fa

map a function f over fa

Attributes

def pure[T](t: T): Task[T]

Pure - wrap value t inside monad.

Pure - wrap value t inside monad.

Note, that pure use eager evaluation, which is different from Haskell.

Attributes

def spawnEffect[A](op: => Task[A]): Task[Fiber[A]]

spawn execution of operation in own execution flow.

spawn execution of operation in own execution flow.

Attributes

def tryCancel[A](op: Fiber[A]): Task[Unit]

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 methods

def adoptAwait[A](fa: Task[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 => Task[T]): F[T]

run with this instance

run with this instance

Attributes

Inherited from:
CpsMonadInstanceContext
def concurrently[A, B](fa: Task[A], fb: Task[B]): F[Either[(Try[A], Spawned[B]), (Spawned[A], Try[B])]]

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
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 flatDelay[T](x: => Task[T]): F[T]

shortcat for delayed evaluation of effect.

shortcat for delayed evaluation of effect.

Attributes

Inherited from:
CpsEffectMonad
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 mapTry[A, B](fa: Task[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: Task[A])(f: Try[A] => Task[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 restore[A](fa: Task[A])(fx: Throwable => Task[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: => Task[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: () => Task[A]): F[A]

async shift of tryPure.

async shift of tryPure.

Attributes

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

return result of fa after completition of action.

return result of fa after completition of action.

Attributes

Inherited from:
CpsTryMonad