RTAction

org.finos.morphir.runtime.RTAction$
See theRTAction companion class
object RTAction

Attributes

Companion
class
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
RTAction.type

Members list

Value members

Concrete methods

def fail[E](e: E): RTAction[Any, E, Nothing]
def fromEither[E, A](either: Either[E, A]): RTAction[Any, E, A]
def fromOption[A](option: Option[A]): RTAction[Any, Unit, A]
def fromTry[A](t: Try[A]): RTAction[Any, Throwable, A]
def setContext[R, E](context: RTExecutionContext): RTAction[R, E, Unit]
def succeed[A](a: A): RTAction[Any, Nothing, A]

Concrete fields

val unit: RTAction[Any, Nothing, Unit]

Implicits

Implicits

implicit def toZPure[R, E, A](action: RTAction[R, E, A]): ZPure[Nothing, RTExecutionContext, RTExecutionContext, R, E, A]