Runtime

besom.internal.Runtime
trait Runtime[F[_]]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes

Members list

Value members

Abstract methods

def blocking[A](thunk: => A): F[A]
def defer[A](thunk: => A): F[A]
def fail(err: Throwable): F[Nothing]
def flatMapBoth[A, B](fa: F[A])(f: Either[Throwable, A] => F[B]): F[B]
def fork[A](fa: => F[A]): F[Fiber[A]]
def fromFuture[A](f: => Future[A]): F[A]
def pure[A](a: A): F[A]
def sleep[A](fa: => F[A], duration: Long): F[A]