JSFutureCpsMonad

cps.monads.jsfuture.JSFuture.JSFutureCpsMonad

Attributes

Source
JSFuture.scala
Graph
Supertypes
class Object
trait Matchable
class Any
Show all
Self type

Members list

Type members

Inherited types

type WF[X] = JSFuture[X]

Attributes

Inherited from:
CpsMonad
Source
CpsMonad.scala

Value members

Concrete methods

def error[A](ex: Throwable): JSFuture[A]

represent error e in monadic context.

represent error e in monadic context.

Attributes

Source
JSFuture.scala
def flatMap[A, B](fa: JSFuture[A])(f: A => JSFuture[B]): JSFuture[B]

bind combinator, which compose f over fa

bind combinator, which compose f over fa

Attributes

Source
JSFuture.scala
def flatMapTry[A, B](fa: JSFuture[A])(f: (Try[A]) => JSFuture[B]): JSFuture[B]

flatMap over result of checked evaluation of A

flatMap over result of checked evaluation of A

Attributes

Source
JSFuture.scala
def map[A, B](fa: JSFuture[A])(f: A => B): JSFuture[B]

map a function f over fa

map a function f over fa

Attributes

Source
JSFuture.scala
override def mapTry[A, B](fa: JSFuture[A])(f: (Try[A]) => B): JSFuture[B]

map over result of checked evaluation of A

map over result of checked evaluation of A

Attributes

Definition Classes
Source
JSFuture.scala
def pure[A](a: A): JSFuture[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

Source
JSFuture.scala

Inherited methods

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

run op in the context environment.

run op in the context environment.

Attributes

Definition Classes
Inherited from:
CpsTryMonadInstanceContext
Source
CpsMonadContext.scala
def flatWrap[T](op: => JSFuture[T]): JSFuture[T]

Wrap and flatten of monadic expression..

Wrap and flatten of monadic expression..

Attributes

Inherited from:
CpsMonad
Source
CpsMonad.scala
def flatten[T](ffa: JSFuture[JSFuture[T]]): JSFuture[T]

Attributes

Inherited from:
CpsMonad
Source
CpsMonad.scala
def fromTry[A](r: Try[A]): JSFuture[A]

transform r into pure value or error.

transform r into pure value or error.

Attributes

Inherited from:
CpsTryMonad
Source
CpsMonad.scala
def mapTryAsync[A, B](fa: JSFuture[A])(f: (Try[A]) => JSFuture[B]): JSFuture[B]

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
def restore[A](fa: JSFuture[A])(fx: Throwable => JSFuture[A]): JSFuture[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
Source
CpsMonad.scala
def tryImpure[A](a: => JSFuture[A]): JSFuture[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
Source
CpsMonad.scala
def tryPure[A](a: => A): JSFuture[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
Source
CpsMonad.scala
def tryPureAsync[A](a: () => JSFuture[A]): JSFuture[A]

async shift of tryPure.

async shift of tryPure.

Attributes

Inherited from:
CpsTryMonad
Source
CpsMonad.scala
def withAction[A](fa: JSFuture[A])(action: => Unit): JSFuture[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
Source
CpsMonad.scala
def withActionAsync[A](fa: JSFuture[A])(action: () => JSFuture[Unit]): JSFuture[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
Source
CpsMonad.scala
def withAsyncAction[A](fa: JSFuture[A])(action: => JSFuture[Unit]): JSFuture[A]

return result of fa after completition of action.

return result of fa after completition of action.

Attributes

Inherited from:
CpsTryMonad
Source
CpsMonad.scala
def withAsyncErrorHandler[A](fa: => JSFuture[A])(f: Throwable => JSFuture[A]): JSFuture[A]

Attributes

Inherited from:
CpsTrySupport
Source
CpsMonad.scala
def withAsyncFinalizer[A](fa: => JSFuture[A])(f: => JSFuture[Unit]): JSFuture[A]

Attributes

Inherited from:
CpsTrySupport
Source
CpsMonad.scala
def wrap[T](op: => T): JSFuture[T]

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