trait WorkerTask[A] extends Future[A]
This class acts as a Future, and contains some utility method for flow control or information about the task that is being executed.
Linear Supertypes
Known Subclasses
Ordering
- Alphabetic
- By Inheritance
Inherited
- WorkerTask
- Future
- Awaitable
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Abstract Value Members
- abstract def addOnNextThrow(callback: (Option[Throwable]) => Unit): Unit
- abstract def continue(): Unit
- abstract def derivate(): Try[A]
- Annotations
- @workerExecution()
- abstract def derivateForAtLeast(millis: Long): Option[Try[A]]
- Annotations
- @workerExecution()
- abstract def getWorker: Worker
- abstract def isCompleted: Boolean
- Definition Classes
- Future
- abstract def isExecuting: Boolean
true if the worker thread is running the task or if the worker is executing other tasks while this one is paused
- abstract def isPaused: Boolean
true if the task has been paused
- abstract def isRunning: Boolean
true if the worker is running this task
- abstract def join(millis: Long): Option[Try[A]]
- abstract def join(): Try[A]
- abstract def lock: Lock
- abstract def onComplete[U](f: (Try[A]) => U)(implicit executor: ExecutionContext): Unit
- Definition Classes
- Future
- abstract val parent: Option[WorkerTask[_]]
- abstract def ready(atMost: Duration)(implicit permit: CanAwait): WorkerTask.this.type
- Definition Classes
- Awaitable
- Annotations
- @throws(classOf[java.util.concurrent.TimeoutException]) @throws(classOf[java.lang.InterruptedException])
- abstract def result(atMost: Duration)(implicit permit: CanAwait): A
- Definition Classes
- Awaitable
- Annotations
- @throws(classOf[java.util.concurrent.TimeoutException]) @throws(classOf[java.lang.InterruptedException])
- abstract val taskID: Int
The taskID this class
- abstract def throwNextThrowable(): Unit
- abstract def transform[S](f: (Try[A]) => Try[S])(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- abstract def transformWith[S](f: (Try[A]) => Future[S])(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- abstract def value: Option[Try[A]]
- Definition Classes
- Future
Concrete 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 andThen[U](pf: PartialFunction[Try[A], U])(implicit executor: ExecutionContext): Future[A]
- Definition Classes
- Future
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def collect[S](pf: PartialFunction[A, S])(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def failed: Future[Throwable]
- Definition Classes
- Future
- def fallbackTo[U >: A](that: Future[U]): Future[U]
- Definition Classes
- Future
- def filter(p: (A) => Boolean)(implicit executor: ExecutionContext): Future[A]
- Definition Classes
- Future
- def flatMap[S](f: (A) => Future[S])(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- def flatten[S](implicit ev: <:<[A, Future[S]]): Future[S]
- Definition Classes
- Future
- def foreach[U](f: (A) => U)(implicit executor: ExecutionContext): Unit
- Definition Classes
- Future
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def map[S](f: (A) => S)(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- def mapTo[S](implicit tag: ClassTag[S]): Future[S]
- Definition Classes
- Future
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def recover[U >: A](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]
- Definition Classes
- Future
- def recoverWith[U >: A](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]
- Definition Classes
- Future
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def transform[S](s: (A) => S, f: (Throwable) => Throwable)(implicit executor: ExecutionContext): Future[S]
- Definition Classes
- Future
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def withFilter(p: (A) => Boolean)(implicit executor: ExecutionContext): Future[A]
- Definition Classes
- Future
- def zip[U](that: Future[U]): Future[(A, U)]
- Definition Classes
- Future
- def zipWith[U, R](that: Future[U])(f: (A, U) => R)(implicit executor: ExecutionContext): Future[R]
- Definition Classes
- Future
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated