Class

akka.dispatch.forkjoin

ForkJoinPool

Related Doc: package forkjoin

Permalink

class ForkJoinPool extends AbstractExecutorService

Source
ForkJoinPool.java
Linear Supertypes
AbstractExecutorService, ExecutorService, Executor, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ForkJoinPool
  2. AbstractExecutorService
  3. ExecutorService
  4. Executor
  5. AnyRef
  6. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ForkJoinPool(parallelism: Int, factory: ForkJoinWorkerThreadFactory, handler: UncaughtExceptionHandler, asyncMode: Boolean)

    Permalink
  2. new ForkJoinPool(parallelism: Int)

    Permalink
  3. new ForkJoinPool()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to any2stringadd[ForkJoinPool] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ForkJoinPool, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to ArrowAssoc[ForkJoinPool] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def awaitQuiescence(timeout: Long, unit: TimeUnit): Boolean

    Permalink
  8. def awaitTermination(timeout: Long, unit: TimeUnit): Boolean

    Permalink
    Definition Classes
    ForkJoinPool → ExecutorService
  9. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  10. def drainTasksTo(c: Collection[_ >: ForkJoinTask[_]]): Int

    Permalink
    Attributes
    protected[akka.dispatch.forkjoin]
  11. def ensuring(cond: (ForkJoinPool) ⇒ Boolean, msg: ⇒ Any): ForkJoinPool

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to Ensuring[ForkJoinPool] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (ForkJoinPool) ⇒ Boolean): ForkJoinPool

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to Ensuring[ForkJoinPool] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): ForkJoinPool

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to Ensuring[ForkJoinPool] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): ForkJoinPool

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to Ensuring[ForkJoinPool] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def execute(task: Runnable): Unit

    Permalink
    Definition Classes
    ForkJoinPool → Executor
  18. def execute(task: ForkJoinTask[_]): Unit

    Permalink
  19. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to StringFormat[ForkJoinPool] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  21. def getActiveThreadCount(): Int

    Permalink
  22. def getAsyncMode(): Boolean

    Permalink
  23. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  24. def getFactory(): ForkJoinWorkerThreadFactory

    Permalink
  25. def getParallelism(): Int

    Permalink
  26. def getPoolSize(): Int

    Permalink
  27. def getQueuedSubmissionCount(): Int

    Permalink
  28. def getQueuedTaskCount(): Long

    Permalink
  29. def getRunningThreadCount(): Int

    Permalink
  30. def getStealCount(): Long

    Permalink
  31. def getUncaughtExceptionHandler(): UncaughtExceptionHandler

    Permalink
  32. def hasQueuedSubmissions(): Boolean

    Permalink
  33. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  34. def invoke[T](task: ForkJoinTask[T]): T

    Permalink
  35. def invokeAll[T](tasks: Collection[_ <: Callable[T]]): List[Future[T]]

    Permalink
    Definition Classes
    ForkJoinPool → AbstractExecutorService → ExecutorService
  36. def invokeAll[T](arg0: Collection[_ <: Callable[T]], arg1: Long, arg2: TimeUnit): List[Future[T]]

    Permalink
    Definition Classes
    AbstractExecutorService → ExecutorService
    Annotations
    @throws( ... )
  37. def invokeAny[T](arg0: Collection[_ <: Callable[T]], arg1: Long, arg2: TimeUnit): T

    Permalink
    Definition Classes
    AbstractExecutorService → ExecutorService
    Annotations
    @throws( ... ) @throws( ... ) @throws( ... )
  38. def invokeAny[T](arg0: Collection[_ <: Callable[T]]): T

    Permalink
    Definition Classes
    AbstractExecutorService → ExecutorService
    Annotations
    @throws( ... ) @throws( ... )
  39. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  40. def isQuiescent(): Boolean

    Permalink
  41. def isShutdown(): Boolean

    Permalink
    Definition Classes
    ForkJoinPool → ExecutorService
  42. def isTerminated(): Boolean

    Permalink
    Definition Classes
    ForkJoinPool → ExecutorService
  43. def isTerminating(): Boolean

    Permalink
  44. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  45. def newTaskFor[T](callable: Callable[T]): RunnableFuture[T]

    Permalink
    Attributes
    protected[akka.dispatch.forkjoin]
    Definition Classes
    ForkJoinPool → AbstractExecutorService
  46. def newTaskFor[T](runnable: Runnable, value: T): RunnableFuture[T]

    Permalink
    Attributes
    protected[akka.dispatch.forkjoin]
    Definition Classes
    ForkJoinPool → AbstractExecutorService
  47. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  49. def pollSubmission(): ForkJoinTask[_]

    Permalink
    Attributes
    protected[akka.dispatch.forkjoin]
  50. def shutdown(): Unit

    Permalink
    Definition Classes
    ForkJoinPool → ExecutorService
  51. def shutdownNow(): List[Runnable]

    Permalink
    Definition Classes
    ForkJoinPool → ExecutorService
  52. def submit(task: Runnable): ForkJoinTask[_]

    Permalink
    Definition Classes
    ForkJoinPool → AbstractExecutorService → ExecutorService
  53. def submit[T](task: Runnable, result: T): ForkJoinTask[T]

    Permalink
    Definition Classes
    ForkJoinPool → AbstractExecutorService → ExecutorService
  54. def submit[T](task: Callable[T]): ForkJoinTask[T]

    Permalink
    Definition Classes
    ForkJoinPool → AbstractExecutorService → ExecutorService
  55. def submit[T](task: ForkJoinTask[T]): ForkJoinTask[T]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  61. def [B](y: B): (ForkJoinPool, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from ForkJoinPool to ArrowAssoc[ForkJoinPool] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AbstractExecutorService

Inherited from ExecutorService

Inherited from Executor

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ForkJoinPool to any2stringadd[ForkJoinPool]

Inherited by implicit conversion StringFormat from ForkJoinPool to StringFormat[ForkJoinPool]

Inherited by implicit conversion Ensuring from ForkJoinPool to Ensuring[ForkJoinPool]

Inherited by implicit conversion ArrowAssoc from ForkJoinPool to ArrowAssoc[ForkJoinPool]

Ungrouped