Packages

trait AsyncExecutor extends Closeable

A connection pool for asynchronous execution of blocking I/O actions. This is used for the asynchronous query execution API on top of blocking back-ends like JDBC.

Source
AsyncExecutor.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AsyncExecutor
  2. Closeable
  3. AutoCloseable
  4. AnyRef
  5. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def close(): Unit

    Shut the thread pool down and try to stop running computations.

    Shut the thread pool down and try to stop running computations. The thread pool is transitioned into a state where it will not accept any new jobs.

    Definition Classes
    AsyncExecutor → Closeable → AutoCloseable
  2. abstract def executionContext: ExecutionContext

    An ExecutionContext for running Futures.

Concrete Value Members

  1. def prioritizedRunnable(priority: => Priority, run: (SetConnectionReleased) => Unit): PrioritizedRunnable