Packages

class CassandraSessionSettings extends AnyRef

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CassandraSessionSettings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val configPath: String
  2. val init: Option[(CqlSession) => Future[Done]]
  3. def metricsCategory: String
  4. def toString(): String
    Definition Classes
    CassandraSessionSettings → AnyRef → Any
  5. def withInit(value: (CqlSession) => Future[Done]): CassandraSessionSettings

    The init function will be performed once when the session is created, i.e.

    The init function will be performed once when the session is created, i.e. if CassandraSessionRegistry.sessionFor is called from multiple places with different init it will only execute the first.

  6. def withInit(value: Function[CqlSession, CompletionStage[Done]]): CassandraSessionSettings

    Java API:

    Java API:

    The init function will be performed once when the session is created, i.e. if CassandraSessionRegistry.sessionFor is called from multiple places with different init it will only execute the first.

  7. def withMetricCategory(value: String): CassandraSessionSettings