class PostgresClientImpl extends PostgresClient
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- PostgresClientImpl
- PostgresClient
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new PostgresClientImpl(factory: ServiceFactory[PgRequest, PgResponse], id: String, types: Option[Map[Int, TypeSpecifier]] = None, receiveFunctions: PartialFunction[String, ValueDecoder[_]], binaryResults: Boolean = false, binaryParams: Boolean = false)
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
- val charset: Charset
- Definition Classes
- PostgresClientImpl → PostgresClient
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def close(): Future[Unit]
Close the underlying connection pool and make this Client eternally down
Close the underlying connection pool and make this Client eternally down
- Definition Classes
- PostgresClientImpl → PostgresClient
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def execute(sql: String): Future[OK]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def executeUpdate(sql: String): Future[OK]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def fetch(sql: String): Future[SelectResult]
- Definition Classes
- PostgresClientImpl → PostgresClient
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def inTransaction[T](fn: (PostgresClient) => Future[T]): Future[T]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def isAvailable: Boolean
Determines whether this client is available (can accept requests with a reasonable likelihood of success).
Determines whether this client is available (can accept requests with a reasonable likelihood of success).
- Definition Classes
- PostgresClientImpl → PostgresClient
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def prepareAndExecute(sql: String, params: Param[_]*): Future[Int]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def prepareAndQuery[T](sql: String, params: Param[_]*)(f: (Row) => T): Future[Seq[T]]
- Definition Classes
- PostgresClient
- def prepareAndQueryToStream[T](sql: String, params: Param[_]*)(f: (Row) => T): AsyncStream[T]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def query(sql: String): Future[QueryResponse]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def select[T](sql: String)(f: (Row) => T): Future[Seq[T]]
- Definition Classes
- PostgresClient
- def selectToStream[T](sql: String)(f: (Row) => T): AsyncStream[T]
- Definition Classes
- PostgresClientImpl → PostgresClient
- def status: Status
The current availability Status of this client.
The current availability Status of this client.
- Definition Classes
- PostgresClientImpl → PostgresClient
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- 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()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])