class
ClientDispatcher extends GenSerialClientDispatcher[Request, Result, Packet, Packet]
Value Members
-
final
def
!=(arg0: AnyRef): Boolean
-
final
def
!=(arg0: Any): Boolean
-
final
def
##(): Int
-
final
def
==(arg0: AnyRef): Boolean
-
final
def
==(arg0: Any): Boolean
-
def
andThen[A](g: (Future[Result]) ⇒ A): (Request) ⇒ A
-
-
final
def
asInstanceOf[T0]: T0
-
def
clone(): AnyRef
-
def
close(deadline: Time): Future[Unit]
-
def
close(after: Duration): Future[Unit]
-
final
def
close(): Future[Unit]
-
def
compose[A](g: (A) ⇒ Request): (A) ⇒ Future[Result]
-
def
dispatch(req: Request, rep: Promise[Result]): Future[Unit]
-
final
def
eq(arg0: AnyRef): Boolean
-
def
equals(arg0: Any): Boolean
-
def
finalize(): Unit
-
final
def
getClass(): Class[_]
-
def
hashCode(): Int
-
def
isAvailable: Boolean
-
final
def
isInstanceOf[T0]: Boolean
-
def
map[Req1](f: (Req1) ⇒ Request): Service[Req1, Result]
-
final
def
ne(arg0: AnyRef): Boolean
-
final
def
notify(): Unit
-
final
def
notifyAll(): Unit
-
def
status: Status
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
-
def
toString(): String
-
final
def
wait(): Unit
-
final
def
wait(arg0: Long, arg1: Int): Unit
-
final
def
wait(arg0: Long): Unit
Deprecated Value Members
-
final
def
release(): Unit
Inherited from Closable
Inherited from AnyRef
Inherited from Any
A ClientDispatcher that implements the mysql client/server protocol. For a detailed exposition of the client/server protocol refer to: http://dev.mysql.com/doc/internals/en/client-server-protocol.html
Note, the mysql protocol does not support any form of multiplexing so requests are dispatched serially and concurrent requests are queued.