Class/Object

s_mach.concurrent.impl

ScheduledExecutionContextImpl

Related Docs: object ScheduledExecutionContextImpl | package impl

Permalink

case class ScheduledExecutionContextImpl(delegate: ScheduledExecutorService)(implicit executionContext: ExecutionContext) extends ScheduledExecutionContext with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScheduledExecutionContextImpl
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. ScheduledExecutionContext
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ScheduledExecutionContextImpl(delegate: ScheduledExecutorService)(implicit executionContext: 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. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. val delegate: ScheduledExecutorService

    Permalink
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  10. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  11. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  14. def reportFailure(cause: Throwable): Unit

    Permalink

    Report a failure.

    Report a failure. Used to report failures during periodic tasks

    Definition Classes
    ScheduledExecutionContextImplScheduledExecutionContext
  15. def schedule[A](delay: FiniteDuration)(task: ⇒ A): DelayedFuture[A]

    Permalink

    Create a DelayedFuture that executes the supplied function after the given delay

    Create a DelayedFuture that executes the supplied function after the given delay

    delay

    the time from now to delay execution

    returns

    a DelayedFuture that can be used to extract result

    Definition Classes
    ScheduledExecutionContextImplScheduledExecutionContext
    Exceptions thrown

    java.util.concurrent.RejectedExecutionException if the task cannot be scheduled for execution

  16. def scheduleAtFixedRate[U](initialDelay: FiniteDuration, period: FiniteDuration, paused: Boolean = false)(task: () ⇒ U): PeriodicTask

    Permalink

    Creates a PeriodicTask that executes first after the given initial delay, and subsequently with the given period.

    Creates a PeriodicTask that executes first after the given initial delay, and subsequently with the given period. PeriodicTask may stopped using the cancel method. If a failure occurs while processing the task, the task is automatically cancelled. If any execution of this task takes longer than its period, then subsequent executions may start late, but will not concurrently execute.

    initialDelay

    the time to delay first execution

    period

    the period between successive executions

    paused

    TRUE to start the periodic task paused FALSE to start running

    task

    the task to execute

    returns

    a PeriodicTask

    Definition Classes
    ScheduledExecutionContextImplScheduledExecutionContext
    Exceptions thrown

    java.lang.IllegalArgumentException if period less than or equal to zero

    java.util.concurrent.RejectedExecutionException if the task cannot be scheduled for execution

  17. def scheduleCancellable[A](delay: FiniteDuration, fallback: ⇒ A)(task: ⇒ A): CancellableDelayedFuture[A]

    Permalink

    Create a DelayedFuture that executes the supplied function after the given delay

    Create a DelayedFuture that executes the supplied function after the given delay

    delay

    the time from now to delay execution

    fallback

    the value to return if the future is cancelled

    returns

    a DelayedFuture that can be used to extract result or cancel (only before it has been started)

    Definition Classes
    ScheduledExecutionContextImplScheduledExecutionContext
    Exceptions thrown

    java.util.concurrent.RejectedExecutionException if the task cannot be scheduled for execution

  18. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  19. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from ScheduledExecutionContext

Inherited from AnyRef

Inherited from Any

Ungrouped