Packages

final class CouchbaseSessionSettings extends AnyRef

Source
model.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CouchbaseSessionSettings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val enrichAsync: (CouchbaseSessionSettings) => Future[CouchbaseSessionSettings]
  2. def enriched: Future[CouchbaseSessionSettings]

    Internal API.

    Internal API. Used internally to apply the asynchronous settings enrichment function.

    Annotations
    @InternalApi()
  3. val environment: Option[CouchbaseEnvironment]
  4. def equals(other: Any): Boolean
    Definition Classes
    CouchbaseSessionSettings → AnyRef → Any
  5. def hashCode(): Int
    Definition Classes
    CouchbaseSessionSettings → AnyRef → Any
  6. val nodes: Seq[String]
  7. val password: String
  8. def toString(): String
    Definition Classes
    CouchbaseSessionSettings → AnyRef → Any
  9. val username: String
  10. def withEnrichAsync(value: (CouchbaseSessionSettings) => Future[CouchbaseSessionSettings]): CouchbaseSessionSettings

    Scala API: Allows to provide an asynchronous method to update the settings.

  11. def withEnrichAsyncCs(value: Function[CouchbaseSessionSettings, CompletionStage[CouchbaseSessionSettings]]): CouchbaseSessionSettings

    Java API: Allows to provide an asynchronous method to update the settings.

  12. def withEnvironment(environment: CouchbaseEnvironment): CouchbaseSessionSettings
  13. def withNodes(nodes: List[String]): CouchbaseSessionSettings

    Java API

  14. def withNodes(nodes: Seq[String]): CouchbaseSessionSettings
  15. def withNodes(nodes: String): CouchbaseSessionSettings
  16. def withPassword(password: String): CouchbaseSessionSettings
  17. def withUsername(username: String): CouchbaseSessionSettings