class ThreadPool extends AnyRef

A thread pool wrapper, provide some helper functions for multi-threading

TODO TreadPool will give 2-version of thread pool, one uses scala version (invokeAndWait), another is provided to Java (invokeAndWait2). The design is weird. We should refactor this class later.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ThreadPool
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ThreadPool(poolSize: Int)

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 clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def getPoolSize: Int
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  12. def invoke[T](task: () ⇒ T): Future[T]

    Invoke a single tasks

  13. def invoke[T](tasks: Seq[() ⇒ T]): Seq[Future[T]]

    Invoke a batch of tasks

  14. def invoke2[T](tasks: Seq[() ⇒ T]): Seq[JavaFuture[T]]
  15. def invokeAndWait[T](tasks: Seq[() ⇒ T], timeout: Duration = Duration.Inf): Seq[T]

    Invoke a batch of tasks and wait for all them finished

  16. def invokeAndWait2[T](tasks: Seq[() ⇒ T], timeout: Long = Long.MaxValue, timeUnit: TimeUnit = TimeUnit.NANOSECONDS): Buffer[JavaFuture[T]]

    Use java future to execute the tasks.

    Use java future to execute the tasks. It will be blocking until tasks completed. If any task throws an exception, it will throw that exception in caller.

    T

    return type of tasks

    tasks

    task sequence. each task's return type is T

    timeout

    the maximum time to wait

    timeUnit

    the time unit for the timeout

    returns

    a sequence of Futures representing the tasks.

  17. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  21. def setMKLThread(size: Int): ThreadPool.this.type

    Set MKL thread pool size

  22. def setMKLThreadOfMklDnnBackend(size: Int): ThreadPool.this.type
  23. def setPoolSize(size: Int): ThreadPool.this.type

    Set pool size

  24. def sync(futures: Seq[Future[_]], timeout: Duration = Duration.Inf): Unit

    Wait for all the tasks in the wait queue finish

  25. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  26. def toString(): String
    Definition Classes
    AnyRef → Any
  27. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped