Object

com.twitter.finagle

Mysql

Related Doc: package finagle

Permalink

object Mysql extends Client[Request, Result] with MysqlRichClient

Example:
  1. val client = Mysql.client
      .withCredentials("", "")
      .withDatabase("")
      .newRichClient("inet!localhost:3306")
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Mysql
  2. MysqlRichClient
  3. Client
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Client(stack: Stack[ServiceFactory[Request, Result]] = ..., params: Params = ...) extends StdStackClient[Request, Result, Client] with WithSessionPool[Client] with WithDefaultLoadBalancer[Client] with MysqlRichClient with Product with Serializable

    Permalink

    Implements a mysql client in terms of a com.twitter.finagle.client.StackClient.

    Implements a mysql client in terms of a com.twitter.finagle.client.StackClient. The client inherits a wealth of features from finagle including connection pooling and load balancing.

    Additionally, this class provides methods for constructing a rich client which exposes a rich mysql api.

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val client: Client

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. def newClient(dest: Name, label: String): ServiceFactory[Request, Result]

    Permalink
    Definition Classes
    Mysql → Client
  15. final def newClient(dest: String, label: String): ServiceFactory[Request, Result]

    Permalink
    Definition Classes
    Client
  16. final def newClient(dest: String): ServiceFactory[Request, Result]

    Permalink
    Definition Classes
    Client
  17. def newRichClient(dest: String): mysql.Client with Transactions with Cursors

    Permalink

    Creates a new RichClient connected to the logical destination described by dest.

    Creates a new RichClient connected to the logical destination described by dest.

    Definition Classes
    MysqlRichClient
  18. def newRichClient(dest: Name, label: String): mysql.Client with Transactions with Cursors

    Permalink

    Creates a new RichClient connected to the logical destination described by dest with the assigned label.

    Creates a new RichClient connected to the logical destination described by dest with the assigned label. The label is used to scope client stats.

    Definition Classes
    MysqlRichClient
  19. def newService(dest: Name, label: String): Service[Request, Result]

    Permalink
    Definition Classes
    Mysql → Client
  20. final def newService(dest: String, label: String): Service[Request, Result]

    Permalink
    Definition Classes
    Client
  21. final def newService(dest: String): Service[Request, Result]

    Permalink
    Definition Classes
    Client
  22. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. object param

    Permalink
  25. def richClientStatsReceiver: StatsReceiver

    Permalink
    Definition Classes
    MysqlRichClient
  26. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  27. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  28. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  30. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Deprecated Value Members

  1. def configured[P](p: P)(implicit arg0: Param[P]): Client

    Permalink

    A client configured with parameter p.

    A client configured with parameter p.

    Annotations
    @deprecated
    Deprecated

    (Since version 6.22.0) Use client.configured

  2. def withCharset(charset: Short): Client

    Permalink

    The default character set used when establishing a new session.

    The default character set used when establishing a new session.

    Annotations
    @deprecated
    Deprecated

    (Since version 6.22.0) Use client.withCharset

  3. def withCredentials(u: String, p: String): Client

    Permalink

    The credentials to use when authenticating a new session.

    The credentials to use when authenticating a new session.

    Annotations
    @deprecated
    Deprecated

    (Since version 6.22.0) Use client.withCredentials

  4. def withDatabase(db: String): Client

    Permalink

    Database to use when this client establishes a new session.

    Database to use when this client establishes a new session.

    Annotations
    @deprecated
    Deprecated

    (Since version 6.22.0) Use client.withDatabase

Inherited from MysqlRichClient

Inherited from finagle.Client[Request, Result]

Inherited from AnyRef

Inherited from Any

Ungrouped