Class

kamon.instrumentation.executor.ExecutorInstrumentation

InstrumentedForkJoinPool

Related Doc: package ExecutorInstrumentation

Permalink

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
ExecutorService, Executor, AnyRef, Any
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. All

Instance Constructors

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

    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 awaitTermination(timeout: Long, unit: TimeUnit): Boolean

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def execute(command: Runnable): Unit

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → Executor
  10. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  13. def invokeAll[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): List[Future[T]]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  14. def invokeAll[T](tasks: Collection[_ <: Callable[T]]): List[Future[T]]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  15. def invokeAny[T](tasks: Collection[_ <: Callable[T]], timeout: Long, unit: TimeUnit): T

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  16. def invokeAny[T](tasks: Collection[_ <: Callable[T]]): T

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  17. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  18. def isShutdown(): Boolean

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  19. def isTerminated(): Boolean

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  20. final def ne(arg0: AnyRef): Boolean

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

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

    Permalink
    Definition Classes
    AnyRef
  23. def shutdown(): Unit

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  24. def shutdownNow(): List[Runnable]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  25. def submit[T](task: Callable[T]): Future[T]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  26. def submit[T](task: Runnable, result: T): Future[T]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  27. def submit(task: Runnable): Future[_]

    Permalink
    Definition Classes
    InstrumentedForkJoinPool → ExecutorService
  28. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  29. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  30. final def wait(): Unit

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

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

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

Inherited from ExecutorService

Inherited from Executor

Inherited from AnyRef

Inherited from Any

Ungrouped