FutureRuntime

besom.internal.FutureRuntime

Attributes

Graph
Supertypes
trait Runtime[Future]
class Object
trait Matchable
class Any

Members list

Value members

Concrete methods

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

Concrete fields