abstract class OnComplete[-T] extends CallbackBridge[Try[T]]
Callback for when a Future is completed with either failure or a success SAM (Single Abstract Method) class
Java API
- Annotations
- @silent()
- Source
- Future.scala
- Alphabetic
- By Inheritance
- OnComplete
- CallbackBridge
- AbstractPartialFunction
- PartialFunction
- Function1
- AnyRef
- Any
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
- Public
- All
Instance Constructors
- new OnComplete()
Abstract Value Members
-
abstract
def
onComplete(failure: Throwable, success: T): Unit
This method will be invoked once when/if a Future that this callback is registered on becomes completed with a failure or a success.
This method will be invoked once when/if a Future that this callback is registered on becomes completed with a failure or a success. In the case of success then "failure" will be null, and in the case of failure the "success" will be null.
- Annotations
- @throws( classOf[Throwable] )
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to any2stringadd[OnComplete[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
andThen[C](k: (BoxedUnit) ⇒ C): PartialFunction[Try[T], C]
- Definition Classes
- PartialFunction → Function1
-
final
def
apply(t: Try[T]): BoxedUnit
- Definition Classes
- CallbackBridge → AbstractPartialFunction → Function1
-
def
applyOrElse[A1 <: Try[T], B1 >: BoxedUnit](x: A1, default: (A1) ⇒ B1): B1
- Definition Classes
- PartialFunction
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
def
compose[A](g: (A) ⇒ Try[T]): (A) ⇒ BoxedUnit
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to StringFormat[OnComplete[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
internal(value: Try[T]): Unit
- Attributes
- protected
- Definition Classes
- OnComplete → CallbackBridge
-
final
def
isDefinedAt(t: Try[T]): Boolean
- Definition Classes
- CallbackBridge → PartialFunction
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lift: (Try[T]) ⇒ Option[BoxedUnit]
- Definition Classes
- PartialFunction
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
orElse[A1 <: Try[T], B1 >: BoxedUnit](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
runWith[U](action: (BoxedUnit) ⇒ U): (Try[T]) ⇒ Boolean
- Definition Classes
- PartialFunction
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
→[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Inherited from CallbackBridge[Try[T]]
Value Members
-
final
def
apply(t: Try[T]): BoxedUnit
- Definition Classes
- CallbackBridge → AbstractPartialFunction → Function1
-
final
def
isDefinedAt(t: Try[T]): Boolean
- Definition Classes
- CallbackBridge → PartialFunction
Inherited from PartialFunction[Try[T], BoxedUnit]
Value Members
-
def
andThen[C](k: (BoxedUnit) ⇒ C): PartialFunction[Try[T], C]
- Definition Classes
- PartialFunction → Function1
-
def
applyOrElse[A1 <: Try[T], B1 >: BoxedUnit](x: A1, default: (A1) ⇒ B1): B1
- Definition Classes
- PartialFunction
-
def
lift: (Try[T]) ⇒ Option[BoxedUnit]
- Definition Classes
- PartialFunction
-
def
orElse[A1 <: Try[T], B1 >: BoxedUnit](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
runWith[U](action: (BoxedUnit) ⇒ U): (Try[T]) ⇒ Boolean
- Definition Classes
- PartialFunction
Inherited from AnyRef
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
- Deprecated
(Since version ) see corresponding Javadoc for more information.
Inherited from Any
Inherited by implicit conversion any2stringadd from OnComplete[T] to any2stringadd[OnComplete[T]]
Value Members
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to any2stringadd[OnComplete[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
Inherited by implicit conversion StringFormat from OnComplete[T] to StringFormat[OnComplete[T]]
Value Members
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to StringFormat[OnComplete[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
Inherited by implicit conversion Ensuring from OnComplete[T] to Ensuring[OnComplete[T]]
Value Members
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
Inherited by implicit conversion ArrowAssoc from OnComplete[T] to ArrowAssoc[OnComplete[T]]
Value Members
-
def
->[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
def
→[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
Ungrouped
-
abstract
def
onComplete(failure: Throwable, success: T): Unit
This method will be invoked once when/if a Future that this callback is registered on becomes completed with a failure or a success.
This method will be invoked once when/if a Future that this callback is registered on becomes completed with a failure or a success. In the case of success then "failure" will be null, and in the case of failure the "success" will be null.
- Annotations
- @throws( classOf[Throwable] )
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
def
+(other: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to any2stringadd[OnComplete[T]] performed by method any2stringadd in scala.Predef.
- Definition Classes
- any2stringadd
-
def
->[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
- Annotations
- @inline()
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
andThen[C](k: (BoxedUnit) ⇒ C): PartialFunction[Try[T], C]
- Definition Classes
- PartialFunction → Function1
-
final
def
apply(t: Try[T]): BoxedUnit
- Definition Classes
- CallbackBridge → AbstractPartialFunction → Function1
-
def
applyOrElse[A1 <: Try[T], B1 >: BoxedUnit](x: A1, default: (A1) ⇒ B1): B1
- Definition Classes
- PartialFunction
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate() @throws( ... )
-
def
compose[A](g: (A) ⇒ Try[T]): (A) ⇒ BoxedUnit
- Definition Classes
- Function1
- Annotations
- @unspecialized()
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: (OnComplete[T]) ⇒ Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean, msg: ⇒ Any): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
def
ensuring(cond: Boolean): OnComplete[T]
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to Ensuring[OnComplete[T]] performed by method Ensuring in scala.Predef.
- Definition Classes
- Ensuring
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
formatted(fmtstr: String): String
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to StringFormat[OnComplete[T]] performed by method StringFormat in scala.Predef.
- Definition Classes
- StringFormat
- Annotations
- @inline()
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
internal(value: Try[T]): Unit
- Attributes
- protected
- Definition Classes
- OnComplete → CallbackBridge
-
final
def
isDefinedAt(t: Try[T]): Boolean
- Definition Classes
- CallbackBridge → PartialFunction
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
def
lift: (Try[T]) ⇒ Option[BoxedUnit]
- Definition Classes
- PartialFunction
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
-
def
orElse[A1 <: Try[T], B1 >: BoxedUnit](that: PartialFunction[A1, B1]): PartialFunction[A1, B1]
- Definition Classes
- PartialFunction
-
def
runWith[U](action: (BoxedUnit) ⇒ U): (Try[T]) ⇒ Boolean
- Definition Classes
- PartialFunction
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- Function1 → AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @throws( ... )
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
→[B](y: B): (OnComplete[T], B)
- Implicit
- This member is added by an implicit conversion from OnComplete[T] to ArrowAssoc[OnComplete[T]] performed by method ArrowAssoc in scala.Predef.
- Definition Classes
- ArrowAssoc
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @Deprecated @deprecated @throws( classOf[java.lang.Throwable] )
- Deprecated
(Since version ) see corresponding Javadoc for more information.