trait
FutureAction[T] extends Future[T]
Abstract Value Members
-
abstract
def
cancel(): Unit
-
abstract
def
isCompleted: Boolean
-
abstract
def
onComplete[U](func: (Try[T]) ⇒ U)(implicit executor: ExecutionContext): Unit
-
abstract
def
ready(atMost: Duration)(implicit permit: CanAwait): FutureAction.this.type
-
abstract
def
result(atMost: Duration)(implicit permit: CanAwait): T
-
abstract
def
value: Option[Try[T]]
Concrete Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
andThen[U](pf: PartialFunction[Try[T], U])(implicit executor: ExecutionContext): Future[T]
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
collect[S](pf: PartialFunction[T, S])(implicit executor: ExecutionContext): Future[S]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
failed: Future[Throwable]
-
def
fallbackTo[U >: T](that: Future[U]): Future[U]
-
def
filter(pred: (T) ⇒ Boolean)(implicit executor: ExecutionContext): Future[T]
-
def
finalize(): Unit
-
def
flatMap[S](f: (T) ⇒ Future[S])(implicit executor: ExecutionContext): Future[S]
-
def
foreach[U](f: (T) ⇒ U)(implicit executor: ExecutionContext): Unit
-
def
get(): T
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
isInstanceOf[T0]: Boolean
-
def
map[S](f: (T) ⇒ S)(implicit executor: ExecutionContext): Future[S]
-
def
mapTo[S](implicit tag: ClassManifest[S]): Future[S]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
onFailure[U](callback: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Unit
-
def
onSuccess[U](pf: PartialFunction[T, U])(implicit executor: ExecutionContext): Unit
-
def
recover[U >: T](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]
-
def
recoverWith[U >: T](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
def
transform[S](s: (T) ⇒ S, f: (Throwable) ⇒ Throwable)(implicit executor: ExecutionContext): Future[S]
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
-
final
def
withFilter(p: (T) ⇒ Boolean)(implicit executor: ExecutionContext): Future[T]
-
def
zip[U](that: Future[U]): Future[(T, U)]
Inherited from Future[T]
Value Members
-
def
andThen[U](pf: PartialFunction[Try[T], U])(implicit executor: ExecutionContext): Future[T]
-
def
collect[S](pf: PartialFunction[T, S])(implicit executor: ExecutionContext): Future[S]
-
def
failed: Future[Throwable]
-
def
fallbackTo[U >: T](that: Future[U]): Future[U]
-
def
filter(pred: (T) ⇒ Boolean)(implicit executor: ExecutionContext): Future[T]
-
def
flatMap[S](f: (T) ⇒ Future[S])(implicit executor: ExecutionContext): Future[S]
-
def
foreach[U](f: (T) ⇒ U)(implicit executor: ExecutionContext): Unit
-
def
map[S](f: (T) ⇒ S)(implicit executor: ExecutionContext): Future[S]
-
def
mapTo[S](implicit tag: ClassManifest[S]): Future[S]
-
def
onFailure[U](callback: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Unit
-
def
onSuccess[U](pf: PartialFunction[T, U])(implicit executor: ExecutionContext): Unit
-
def
recover[U >: T](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]
-
def
recoverWith[U >: T](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]
-
def
transform[S](s: (T) ⇒ S, f: (Throwable) ⇒ Throwable)(implicit executor: ExecutionContext): Future[S]
-
final
def
withFilter(p: (T) ⇒ Boolean)(implicit executor: ExecutionContext): Future[T]
-
def
zip[U](that: Future[U]): Future[(T, U)]
Inherited from AnyRef
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
def
clone(): AnyRef
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): java.lang.Class[_]
-
def
hashCode(): Int
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Inherited from Any
Value Members
-
final
def
!=(arg0: Any): Boolean
-
final
def
==(arg0: Any): Boolean
-
final
def
asInstanceOf[T0]: T0
-
final
def
isInstanceOf[T0]: Boolean
A future for the result of an action. This is an extension of the Scala Future interface to support cancellation.