org.apache.pekko.stream.connectors.couchbase
CouchbaseSessionSettings
Companion class CouchbaseSessionSettings
object CouchbaseSessionSettings
- Source
- model.scala
- Alphabetic
- By Inheritance
- CouchbaseSessionSettings
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply(username: String, password: String): CouchbaseSessionSettings
Scala API:
- def apply(system: ClassicActorSystemProvider): CouchbaseSessionSettings
Scala API: Load the session from the default config path
pekko.connectors.couchbase.session
, expects the config object to have the fieldsusername
,password
andnodes
. - def apply(system: ActorSystem): CouchbaseSessionSettings
Scala API: Load the session from the default config path
pekko.connectors.couchbase.session
, expects the config object to have the fieldsusername
,password
andnodes
. - def apply(config: Config): CouchbaseSessionSettings
Scala API: Load the session from the given config object, expects the config object to have the fields
username
,password
andnodes
.Scala API: Load the session from the given config object, expects the config object to have the fields
username
,password
andnodes
. Using it means first looking your config namespace up yourself usingconfig.getConfig("some.path")
. - val configPath: String
- def create(system: ClassicActorSystemProvider): CouchbaseSessionSettings
Java API: Load the session from the default config path
pekko.connectors.couchbase.session
, expects the config object to have the fieldsusername
,password
andnodes
. - def create(system: ActorSystem): CouchbaseSessionSettings
Java API: Load the session from the default config path
pekko.connectors.couchbase.session
, expects the config object to have the fieldsusername
,password
andnodes
. - def create(config: Config): CouchbaseSessionSettings
Java API: Load the session from the given config object, expects the config object to have the fields
username
,password
andnodes
.Java API: Load the session from the given config object, expects the config object to have the fields
username
,password
andnodes
. Using it means first looking your config namespace up yourself usingconfig.getConfig("some.path")
. - def create(username: String, password: String): CouchbaseSessionSettings
Java API: