org.apache.pekko.stream.connectors.cassandra.javadsl
CassandraSessionRegistry
Companion object CassandraSessionRegistry
final class CassandraSessionRegistry extends AnyRef
- Alphabetic
- By Inheritance
- CassandraSessionRegistry
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def sessionFor(settings: CassandraSessionSettings): CassandraSession
Get an existing session or start a new one with the given settings, makes it possible to share one session across plugins.
- def sessionFor(configPath: String, init: Function[CqlSession, CompletionStage[Done]]): CassandraSession
Get an existing session or start a new one with the given settings, makes it possible to share one session across plugins.
Get an existing session or start a new one with the given settings, makes it possible to share one session across plugins.
The
init
function will be performed once when the session is created, i.e. ifsessionFor
is called from multiple places with differentinit
it will only execute the first.Sessions in the session registry are closed after actor system termination.
- def sessionFor(configPath: String): CassandraSession
Get an existing session or start a new one with the given settings, makes it possible to share one session across plugins.
Get an existing session or start a new one with the given settings, makes it possible to share one session across plugins.
Sessions in the session registry are closed after actor system termination.