Packages

trait TimerTask extends Runnable with Cancellable

INTERNAL API

Attributes
protected[actor]
Source
LightArrayRevolverScheduler.scala
Linear Supertypes
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TimerTask
  2. Cancellable
  3. Runnable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def cancel(): Boolean

    Cancels this Cancellable and returns true if that was successful.

    Cancels this Cancellable and returns true if that was successful. If this cancellable was (concurrently) cancelled already, then this method will return false although isCancelled will return true.

    Java & Scala API

    Definition Classes
    Cancellable
  2. abstract def isCancelled: Boolean

    Returns true if and only if this Cancellable has been successfully cancelled

    Returns true if and only if this Cancellable has been successfully cancelled

    Java & Scala API

    Definition Classes
    Cancellable
  3. abstract def run(): Unit
    Definition Classes
    Runnable