class InstrumentedForkJoinPool extends ExecutorService

Executor service wrapper for ForkJoin Pool executors that keeps track of submitted and completed tasks and optionally tracks the time tasks spend waiting on the underlying executor service's queue. This instrumented executor does some extra counting work (compared to the InstrumentedThreadPool class) because ForkJoin Pool executors do not provide submitted and completed task counters.

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

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. InstrumentedForkJoinPool
  2. ExecutorService
  3. Executor
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new InstrumentedForkJoinPool(wrapped: ExecutorService, telemetryReader: ForkJoinPoolTelemetryReader, name: String, extraTags: TagSet, scheduledActionName: String, settings: Settings)

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
    InstrumentedForkJoinPool → 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
    InstrumentedForkJoinPool → Executor
  10. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  13. def invokeAll[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): List[Future[T]]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  14. def invokeAll[T](tasks: Collection[_ <: Callable[T]]): List[Future[T]]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  15. def invokeAny[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): T
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  16. def invokeAny[T](tasks: Collection[_ <: Callable[T]]): T
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. def isShutdown(): Boolean
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  19. def isTerminated(): Boolean
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  20. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  21. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  22. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. def shutdown(): Unit
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  24. def shutdownNow(): List[Runnable]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  25. def submit[T](task: Callable[T]): Future[T]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  26. def submit[T](task: Runnable, result: T): Future[T]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  27. def submit(task: Runnable): Future[_]
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toString(): String
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Inherited from ExecutorService

Inherited from Executor

Inherited from AnyRef

Inherited from Any

Ungrouped