Future

io.ino.solrs.future.Future
trait Future[+T]

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Known subtypes
class FutureBase[T]
class JavaFuture[T]
class ScalaFuture[T]
class TwitterFuture[T]

Members list

Value members

Abstract methods

def flatMap[S](f: T => Future[S]): Future[S]
def handle[U >: T](pf: PartialFunction[Throwable, U]): Future[U]
def handleWith[U >: T](pf: PartialFunction[Throwable, Future[U]]): Future[U]

Creates a new future that will handle any matching throwable that this future might contain by assigning it a value of another future.

Creates a new future that will handle any matching throwable that this future might contain by assigning it a value of another future.

If there is no match, or if this future contains a valid result then the new future will contain the same result.

Example:

val f = future { Int.MaxValue }
future (6 / 0) handle { case e: ArithmeticException => f } // result: Int.MaxValue

Like recoverWith from std lib, related to rescue/handle in twitter.

Attributes

def map[S](f: T => S): Future[S]
def onComplete[U](func: Try[T] => U): Unit