Object

roc

Postgresql

Related Doc: package roc

Permalink

object Postgresql extends Client[Request, Result] with PostgresqlRichClient

A Finagle Client that connects to Postgresql Server(s).

Example:
  1. val client = Postgresql.client
      .withDatabase("postgres")
      .withUserAndPasswd("username", "password")
      .newRichClient("localhost:5432")
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Postgresql
  2. PostgresqlRichClient
  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]] = StackClient.newStack, params: Params = ...) extends StdStackClient[Request, Result, Client] with PostgresqlRichClient with Product with Serializable

    Permalink

    Implements a Postgresql client in terms of a Finagle Stack Client.

    Implements a Postgresql client in terms of a Finagle Stack Client. The client inherits a wealth of features from Finagle including connection pooling and load balancing.

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

    Used to construct a Client via the builder pattern.

  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
    Postgresql → 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): postgresql.Client

    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
    PostgresqlRichClient
  18. def newRichClient(dest: Name, label: String): postgresql.Client

    Permalink

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

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

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

    Permalink
    Definition Classes
    Postgresql → 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. final def synchronized[T0](arg0: ⇒ T0): T0

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

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

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

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

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

Deprecated Value Members

  1. final def newClient(dest: Group[SocketAddress]): ServiceFactory[Request, Result]

    Permalink
    Definition Classes
    Client
    Annotations
    @deprecated
    Deprecated

    (Since version 6.7.x) Use destination names

  2. final def newService(dest: Group[SocketAddress]): Service[Request, Result]

    Permalink
    Definition Classes
    Client
    Annotations
    @deprecated
    Deprecated

    (Since version 6.7.x) Use destination names

Inherited from PostgresqlRichClient

Inherited from AnyRef

Inherited from Any

Ungrouped