c

kamon.instrumentation.executor.ExecutorInstrumentation

InstrumentedScheduledThreadPoolExecutor

class InstrumentedScheduledThreadPoolExecutor extends InstrumentedThreadPool with ScheduledExecutorService

Executor service wrapper for ScheduledThreadPool executors that keeps track of submitted and completed tasks. Since tasks submitted to this type of executor are expected to be delayed for some time we are not explicitly tracking the time-in-queue metric, nor allowing to perform context propagation (at least manually).

The instruments used to track the pool's behavior are removed once the pool is shut down.

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InstrumentedScheduledThreadPoolExecutor
  2. ScheduledExecutorService
  3. InstrumentedThreadPool
  4. ExecutorService
  5. Executor
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new InstrumentedScheduledThreadPoolExecutor(wrapped: ScheduledThreadPoolExecutor, name: String, extraTags: TagSet, scheduledActionName: String)

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def awaitTermination(timeout: Long, unit: TimeUnit): Boolean
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  9. def execute(command: Runnable): Unit
    Definition Classes
    InstrumentedThreadPool → Executor
  10. def executorType: String
    Attributes
    protected
    Definition Classes
    InstrumentedScheduledThreadPoolExecutorInstrumentedThreadPool
  11. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  12. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  14. def invokeAll[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): List[Future[T]]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  15. def invokeAll[T](tasks: Collection[_ <: Callable[T]]): List[Future[T]]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  16. def invokeAny[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): T
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  17. def invokeAny[T](tasks: Collection[_ <: Callable[T]]): T
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  18. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  19. def isShutdown(): Boolean
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  20. def isTerminated(): Boolean
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def schedule[V](callable: Callable[V], delay: Long, unit: TimeUnit): ScheduledFuture[V]
    Definition Classes
    InstrumentedScheduledThreadPoolExecutor → ScheduledExecutorService
  25. def schedule(command: Runnable, delay: Long, unit: TimeUnit): ScheduledFuture[_]
    Definition Classes
    InstrumentedScheduledThreadPoolExecutor → ScheduledExecutorService
  26. def scheduleAtFixedRate(command: Runnable, initialDelay: Long, period: Long, unit: TimeUnit): ScheduledFuture[_]
    Definition Classes
    InstrumentedScheduledThreadPoolExecutor → ScheduledExecutorService
  27. def scheduleWithFixedDelay(command: Runnable, initialDelay: Long, delay: Long, unit: TimeUnit): ScheduledFuture[_]
    Definition Classes
    InstrumentedScheduledThreadPoolExecutor → ScheduledExecutorService
  28. def shutdown(): Unit
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  29. def shutdownNow(): List[Runnable]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  30. def submit[T](task: Callable[T]): Future[T]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  31. def submit[T](task: Runnable, result: T): Future[T]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  32. def submit(task: Runnable): Future[_]
    Definition Classes
    InstrumentedThreadPool → ExecutorService
  33. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  34. def toString(): String
    Definition Classes
    AnyRef → Any
  35. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  36. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  37. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from InstrumentedThreadPool

Inherited from ExecutorService

Inherited from Executor

Inherited from AnyRef

Inherited from Any

Ungrouped