Click or drag to resize
Akka.NETBatchingSqlJournalSetup Constructor (Config, QueryConfiguration)
Initializes a new instance of the BatchingSqlJournalSetup class.

Namespace:  Akka.Persistence.Sql.Common.Journal
Assembly:  Akka.Persistence.Sql.Common (in Akka.Persistence.Sql.Common.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
protected BatchingSqlJournalSetup(
	Config config,
	QueryConfiguration namingConventions
)

Parameters

config
Type: Akka.ConfigurationConfig
The configuration used to configure the journal.
namingConventions
Type: Akka.Persistence.Sql.Common.JournalQueryConfiguration
The naming conventions used by the database to construct valid SQL statements.
Exceptions
ExceptionCondition
ConfigurationException This exception is thrown for a couple of reasons.
  • A connection string for the SQL event journal was not specified.
  • An unknown isolation-level value was specified. Acceptable isolation-level values include: chaos | read-committed | read-uncommitted | repeatable-read | serializable | snapshot | unspecified
ArgumentNullException This exception is thrown when the specified config is undefined.
See Also