FutureExcept

case class FutureExcept[A](value: Future[Either[String, A]])
Companion:
object
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Concrete methods

def flatMap[B](f: A => FutureExcept[B])(implicit ec: ExecutionContext): FutureExcept[B]
def map[B](f: A => B)(implicit ec: ExecutionContext): FutureExcept[B]
def mapInner[B](f: Either[String, A] => Either[String, B])(implicit ec: ExecutionContext): FutureExcept[B]
def semiflatmap[B](f: A => Either[String, B])(implicit ec: ExecutionContext): FutureExcept[B]

Inherited methods

def productElementNames: Iterator[String]
Inherited from:
Product
def productIterator: Iterator[Any]
Inherited from:
Product