Class

s_mach.concurrent.impl.ScheduledExecutionContextImpl

CancellableScheduledDelayedFutureImpl

Related Doc: package ScheduledExecutionContextImpl

Permalink

class CancellableScheduledDelayedFutureImpl[A] extends ScheduledDelayedFutureImpl[A] with CancellableDelayedFuture[A]

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CancellableScheduledDelayedFutureImpl
  2. CancellableDelayedFuture
  3. CancellableFuture
  4. ScheduledDelayedFutureImpl
  5. DelegatedFuture
  6. DelayedFuture
  7. DeferredFuture
  8. Future
  9. Awaitable
  10. AnyRef
  11. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new CancellableScheduledDelayedFutureImpl(task: () ⇒ A, fallback: ⇒ A, delay: FiniteDuration, scheduledExecutorService: ScheduledExecutorService)(implicit ec: ExecutionContext)

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. def andThen[U](pf: PartialFunction[Try[A], U])(implicit executor: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    Future
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def canCancel: Boolean

    Permalink

    returns

    TRUE if the future can be cancelled

    Definition Classes
    CancellableScheduledDelayedFutureImplCancellableFuture
  7. def cancel(): Boolean

    Permalink

    returns

    TRUE if the future has not been started and was successfully cancelled

    Definition Classes
    CancellableScheduledDelayedFutureImplCancellableFuture
  8. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  9. def collect[S](pf: PartialFunction[A, S])(implicit executor: ExecutionContext): Future[S]

    Permalink
    Definition Classes
    Future
  10. val deferred: Future[Future[A]]

    Permalink

    returns

    a future that completes once the start condition occurs. The future contains the deferred future (which is now running)

    Definition Classes
    ScheduledDelayedFutureImplDeferredFuture
  11. val deferredPromise: Promise[Future[A]]

    Permalink
    Definition Classes
    ScheduledDelayedFutureImpl
  12. val delay: FiniteDuration

    Permalink

    returns

    the delay before starting

    Definition Classes
    ScheduledDelayedFutureImplDelayedFuture
  13. val delay_ns: Long

    Permalink
    Definition Classes
    ScheduledDelayedFutureImpl
  14. val delegate: Future[A]

    Permalink

    returns

    the future to delegate to

    Definition Classes
    ScheduledDelayedFutureImplDelegatedFuture
  15. val delegatePromise: Promise[A]

    Permalink
    Definition Classes
    ScheduledDelayedFutureImpl
  16. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  18. def failed: Future[Throwable]

    Permalink
    Definition Classes
    Future
  19. def fallbackTo[U >: A](that: Future[U]): Future[U]

    Permalink
    Definition Classes
    Future
  20. def filter(p: (A) ⇒ Boolean)(implicit executor: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    Future
  21. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  22. def flatMap[S](f: (A) ⇒ Future[S])(implicit executor: ExecutionContext): Future[S]

    Permalink
    Definition Classes
    Future
  23. def foreach[U](f: (A) ⇒ U)(implicit executor: ExecutionContext): Unit

    Permalink
    Definition Classes
    Future
  24. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  26. def isCancelled: Boolean

    Permalink

    returns

    TRUE if the future was cancelled

    Definition Classes
    CancellableScheduledDelayedFutureImplCancellableFuture
  27. final def isCompleted: Boolean

    Permalink
    Definition Classes
    DelegatedFuture → Future
  28. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  29. def isStarted: Boolean

    Permalink

    returns

    TRUE if the future has been started

    Definition Classes
    DeferredFuture
  30. val javaScheduledFuture: ScheduledFuture[_]

    Permalink
    Definition Classes
    ScheduledDelayedFutureImpl
  31. def map[S](f: (A) ⇒ S)(implicit executor: ExecutionContext): Future[S]

    Permalink
    Definition Classes
    Future
  32. def mapTo[S](implicit tag: ClassTag[S]): Future[S]

    Permalink
    Definition Classes
    Future
  33. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  34. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  35. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  36. final def onComplete[U](f: (Try[A]) ⇒ U)(implicit executor: ExecutionContext): Unit

    Permalink
    Definition Classes
    DelegatedFuture → Future
  37. def onFailure[U](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Unit

    Permalink
    Definition Classes
    Future
  38. def onSuccess[U](pf: PartialFunction[A, U])(implicit executor: ExecutionContext): Unit

    Permalink
    Definition Classes
    Future
  39. final def ready(atMost: Duration)(implicit permit: CanAwait): CancellableScheduledDelayedFutureImpl.this.type

    Permalink
    Definition Classes
    DelegatedFuture → Awaitable
    Annotations
    @throws( classOf[InterruptedException] ) @throws( classOf[TimeoutException] )
  40. def recover[U >: A](pf: PartialFunction[Throwable, U])(implicit executor: ExecutionContext): Future[U]

    Permalink
    Definition Classes
    Future
  41. def recoverWith[U >: A](pf: PartialFunction[Throwable, Future[U]])(implicit executor: ExecutionContext): Future[U]

    Permalink
    Definition Classes
    Future
  42. final def result(atMost: Duration)(implicit permit: CanAwait): A

    Permalink
    Definition Classes
    DelegatedFuture → Awaitable
    Annotations
    @throws( classOf[Exception] )
  43. val startTime_ns: Long

    Permalink

    returns

    the time stamp in nanoseconds when the future will be started

    Definition Classes
    ScheduledDelayedFutureImplDelayedFuture
  44. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  45. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  46. def transform[S](s: (A) ⇒ S, f: (Throwable) ⇒ Throwable)(implicit executor: ExecutionContext): Future[S]

    Permalink
    Definition Classes
    Future
  47. final def value: Option[Try[A]]

    Permalink
    Definition Classes
    DelegatedFuture → Future
  48. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  49. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. val wasCancelled: Latch

    Permalink
  52. final def withFilter(p: (A) ⇒ Boolean)(implicit executor: ExecutionContext): Future[A]

    Permalink
    Definition Classes
    Future
  53. def zip[U](that: Future[U]): Future[(A, U)]

    Permalink
    Definition Classes
    Future

Inherited from CancellableDelayedFuture[A]

Inherited from CancellableFuture[A]

Inherited from ScheduledDelayedFutureImpl[A]

Inherited from DelegatedFuture[A]

Inherited from DelayedFuture[A]

Inherited from DeferredFuture[A]

Inherited from Future[A]

Inherited from Awaitable[A]

Inherited from AnyRef

Inherited from Any

Ungrouped