Packages

final class R2dbcSettings extends AnyRef

INTERNAL API

Annotations
@InternalStableApi()
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. R2dbcSettings
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val cleanupSettings: CleanupSettings
  2. val connectionFactorSliceRanges: IndexedSeq[Range]
  3. val dataPartitionSliceRanges: IndexedSeq[Range]
  4. val dbTimestampMonotonicIncreasing: Boolean
  5. def dialectName: String

    One of the supported dialects 'postgres', 'yugabyte', 'sqlserver' or 'h2'

  6. val durableStateAssertSingleWriter: Boolean
  7. val durableStateTable: String
  8. def durableStateTableWithSchema(slice: Int): String

    The durable state table and schema name with data partition suffix for the given slice.

    The durable state table and schema name with data partition suffix for the given slice. When number-of-partitions is 1 the table name is without suffix.

  9. def getDurableStateTable(entityType: String): String
  10. def getDurableStateTableWithSchema(entityType: String, slice: Int): String

    The durable state table and schema name for the entityType with data partition suffix for the given slice.

    The durable state table and schema name for the entityType with data partition suffix for the given slice. When number-of-partitions is 1 the table name is without suffix.

  11. val journalPublishEvents: Boolean
  12. val journalTable: String
  13. def journalTableWithSchema(slice: Int): String

    The journal table and schema name with data partition suffix for the given slice.

    The journal table and schema name with data partition suffix for the given slice. When number-of-partitions is 1 the table name is without suffix.

  14. val logDbCallsExceeding: FiniteDuration
  15. val numberOfDataPartitions: Int
  16. val numberOfDatabases: Int
  17. val querySettings: QuerySettings
  18. val schema: Option[String]
  19. def snapshotTableWithSchema(slice: Int): String

    The snapshot table and schema name with data partition suffix for the given slice.

    The snapshot table and schema name with data partition suffix for the given slice. When number-of-partitions is 1 the table name is without suffix.

  20. val snapshotsTable: String
  21. def toString(): String
    Definition Classes
    R2dbcSettings → AnyRef → Any

Deprecated Value Members

  1. val durableStateTableWithSchema: String

    The durable state table and schema name without data partition suffix.

    The durable state table and schema name without data partition suffix.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.2) Use durableStateTableWithSchema(slice)

  2. def getDurableStateTableWithSchema(entityType: String): String

    The durable state table and schema name for the entityType without data partition suffix.

    The durable state table and schema name for the entityType without data partition suffix.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.2) Use getDurableStateTableWithSchema(entityType, slice)

  3. val journalTableWithSchema: String

    The journal table and schema name without data partition suffix.

    The journal table and schema name without data partition suffix.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.2) Use journalTableWithSchema(slice)

  4. val snapshotsTableWithSchema: String

    The snapshot table and schema name without data partition suffix.

    The snapshot table and schema name without data partition suffix.

    Annotations
    @deprecated
    Deprecated

    (Since version 1.2.2) Use snapshotTableWithSchema(slice)