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
- Alphabetic
- By Inheritance
Inherited
- InstrumentedForkJoinPool
- ExecutorService
- Executor
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new InstrumentedForkJoinPool(wrapped: ExecutorService, telemetryReader: ForkJoinPoolTelemetryReader, name: String, extraTags: TagSet, scheduledActionName: String, settings: Settings)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def awaitTermination(timeout: Long, unit: TimeUnit): Boolean
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def execute(command: Runnable): Unit
- Definition Classes
- InstrumentedForkJoinPool → Executor
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- def invokeAll[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): List[Future[T]]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def invokeAll[T](tasks: Collection[_ <: Callable[T]]): List[Future[T]]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def invokeAny[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): T
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def invokeAny[T](tasks: Collection[_ <: Callable[T]]): T
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def isShutdown(): Boolean
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def isTerminated(): Boolean
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- def shutdown(): Unit
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def shutdownNow(): List[Runnable]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def submit[T](task: Callable[T]): Future[T]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def submit[T](task: Runnable, result: T): Future[T]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- def submit(task: Runnable): Future[_]
- Definition Classes
- InstrumentedForkJoinPool → ExecutorService
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()