class MySQLConnection extends MySQLHandlerDelegate with Connection with TimeoutScheduler
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MySQLConnection
- TimeoutScheduler
- Connection
- MySQLHandlerDelegate
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new MySQLConnection(configuration: Configuration, charsetMapper: CharsetMapper = CharsetMapper.Instance, group: EventLoopGroup = NettyUtils.DefaultEventLoopGroup, executionContext: ExecutionContext = ExecutorServiceUtils.SameThread)
Value Members
- def addTimeout[A](promise: Promise[A], durationOption: Option[Duration])(implicit executionContext: ExecutionContext): Option[ScheduledFuture[_]]
- Definition Classes
- TimeoutScheduler
- def close: Future[Connection]
- def connect: Future[Connection]
- Definition Classes
- MySQLConnection → Connection
- def connected(ctx: ChannelHandlerContext): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def count: Long
- def disconnect: Future[Connection]
- Definition Classes
- MySQLConnection → Connection
- def eventLoopGroup: EventLoopGroup
- Definition Classes
- MySQLConnection → TimeoutScheduler
- def exceptionCaught(throwable: Throwable): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- implicit val executionContext: ExecutionContext
- def inTransaction[A](f: (Connection) => Future[A])(implicit executionContext: ExecutionContext): Future[A]
- Definition Classes
- Connection
- def isConnected: Boolean
- Definition Classes
- MySQLConnection → Connection
- def isQuerying: Boolean
- def isTimeouted: Boolean
- Definition Classes
- TimeoutScheduler
- def lastException: Throwable
- def onEOF(message: EOFMessage): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def onError(message: ErrorMessage): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def onHandshake(message: HandshakeMessage): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def onOk(message: OkMessage): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def onResultSet(resultSet: ResultSet, message: EOFMessage): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def onTimeout: Unit
- Definition Classes
- MySQLConnection → TimeoutScheduler
- def schedule(block: => Unit, duration: Duration): ScheduledFuture[_]
- Definition Classes
- TimeoutScheduler
- def sendPreparedStatement(query: String, values: Seq[Any]): Future[QueryResult]
- Definition Classes
- MySQLConnection → Connection
- def sendQuery(query: String): Future[QueryResult]
- Definition Classes
- MySQLConnection → Connection
- def switchAuthentication(message: AuthenticationSwitchRequest): Unit
- Definition Classes
- MySQLConnection → MySQLHandlerDelegate
- def toString(): String
- Definition Classes
- MySQLConnection → AnyRef → Any
- def version: Version