Async

object Async
Companion
class
trait Sum
trait Mirror
class Object
trait Matchable
class Any

Type members

Classlikes

case class Later[A](onComplete: A => Unit => Unit) extends Async[A]
case class Now[A](value: A) extends Async[A]

Inherited types

type MirroredElemLabels <: Tuple

The names of the product elements

The names of the product elements

Inherited from
Mirror
type MirroredLabel <: String

The name of the type

The name of the type

Inherited from
Mirror

Value members

Concrete methods

def defer[A](a: => A): Async[A]
def fromFuture[A](fa: Future[A]): Async[Try[A]]
def later[A](onComplete: A => Unit => Unit): Async[A]
def now[A](value: A): Async[A]
def toFuture[A](async: Async[A]): Future[A]