Connection
ldbc.connector.Connection$package.Connection
object Connection
Attributes
- Source
- Connection.scala
- Graph
-
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
-
Connection.type
Members list
Value members
Concrete methods
Attributes
- Source
- Connection.scala
def apply[F[_] : UUIDGen](host: String, port: Int, user: String, password: Option[String], database: Option[String], debug: Boolean, ssl: SSL, socketOptions: List[SocketOption], readTimeout: Duration, allowPublicKeyRetrieval: Boolean, databaseTerm: Option[DatabaseTerm], logHandler: Option[LogHandler[F]]): (Tracer[F]) ?=> Resource[F, LdbcConnection[F]]
Attributes
- Source
- Connection.scala
def default[F[_] : UUIDGen, A](host: String, port: Int, user: String, password: Option[String], database: Option[String], debug: Boolean, ssl: SSL, socketOptions: List[SocketOption], readTimeout: Duration, allowPublicKeyRetrieval: Boolean, databaseTerm: Option[DatabaseTerm], logHandler: Option[LogHandler[F]], before: (Connection[F]) => F[A], after: (A, Connection[F]) => F[Unit]): (Tracer[F]) ?=> Resource[F, LdbcConnection[F]]
Attributes
- Source
- Connection.scala
def fromSocketGroup[F[_] : Tracer, A](socketGroup: SocketGroup[F], host: String, port: Int, user: String, password: Option[String], database: Option[String], debug: Boolean, socketOptions: List[SocketOption], sslOptions: Option[Options[F]], readTimeout: Duration, allowPublicKeyRetrieval: Boolean, databaseTerm: Option[DatabaseTerm], logHandler: LogHandler[F], acquire: (Connection[F]) => F[A], release: (A, Connection[F]) => F[Unit])(implicit evidence$1: Tracer[F], evidence$2: Console[F], evidence$3: Hashing[F], evidence$4: UUIDGen[F], ev: Async[F]): Resource[F, LdbcConnection[F]]
Attributes
- Source
- Connection.scala
def fromSockets[F[_] : UUIDGen, A](sockets: Resource[F, Socket[F]], host: String, port: Int, user: String, password: Option[String], database: Option[String], debug: Boolean, sslOptions: Option[Options[F]], readTimeout: Duration, allowPublicKeyRetrieval: Boolean, databaseTerm: Option[DatabaseTerm], logHandler: LogHandler[F], acquire: (Connection[F]) => F[A], release: (A, Connection[F]) => F[Unit]): Resource[F, LdbcConnection[F]]
Attributes
- Source
- Connection.scala
def withBeforeAfter[F[_] : UUIDGen, A](host: String, port: Int, user: String, before: (Connection[F]) => F[A], after: (A, Connection[F]) => F[Unit], password: Option[String], database: Option[String], debug: Boolean, ssl: SSL, socketOptions: List[SocketOption], readTimeout: Duration, allowPublicKeyRetrieval: Boolean, databaseTerm: Option[DatabaseTerm], logHandler: Option[LogHandler[F]]): (Tracer[F]) ?=> Resource[F, LdbcConnection[F]]
Attributes
- Source
- Connection.scala
In this article