Ready

final case class Ready[+A](value: A) extends Pot[A]
trait Serializable
trait Product
trait Equals
trait Pot[A]
class Object
trait Matchable
class Any

Value members

Inherited methods

def flatMap[B](f: A => Pot[B]): Pot[B]
Inherited from:
Pot
def flatten[B](implicit ev: A <:< Pot[B]): Pot[B]
Inherited from:
Pot
def fold[B](fp: => B, fe: Throwable => B, fr: A => B): B
Inherited from:
Pot
def isError: Boolean
Inherited from:
Pot
def isPending: Boolean
Inherited from:
Pot
def isReady: Boolean
Inherited from:
Pot
def map[B](f: A => B): Pot[B]
Inherited from:
Pot
def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product
def toOption: Option[A]
Inherited from:
Pot
def toOptionTry: Option[Try[A]]
Inherited from:
Pot
Inherited from:
Pot
def void: Pot[Unit]
Inherited from:
Pot