Packages

trait Scheduler extends AutoCloseable

Linear Supertypes
AutoCloseable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Scheduler
  2. AutoCloseable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def close(): Unit
    Definition Classes
    Scheduler → AutoCloseable
  2. abstract def schedule[T](task: Task[T], delay: Duration): Scheduled[T]
  3. abstract def scheduleAtFixedRate(task: Task[Any], initialDelay: Duration, period: Duration): Scheduled[Unit]
  4. abstract def scheduleWithFixedDelay(task: Task[Any], initialDelay: Duration, delay: Duration): Scheduled[Unit]