Package | Description |
---|---|
org.axonframework.eventhandling.saga.repository.jdbc |
Modifier and Type | Class and Description |
---|---|
class |
GenericSagaSqlSchema
Generic SagaSqlSchema implementation, for use in most databases.
|
class |
HsqlSagaSqlSchema
Specialization of the GenericSagaSqlSchema for use in the HSQL database.
|
class |
Oracle11SagaSqlSchema
Oracle 11 does not support AUTO_INCREMENT.
|
class |
PostgresSagaSqlSchema
SQL schema supporting postgres databases.
|
Constructor and Description |
---|
JdbcSagaStore(ConnectionProvider connectionProvider,
SagaSqlSchema sqldef)
Initializes a Saga Repository, using given
connectionProvider to obtain connections to the
database, and given sqldef to execute SQL statements. |
JdbcSagaStore(ConnectionProvider connectionProvider,
SagaSqlSchema sqldef,
Serializer serializer)
Initializes a Saga Repository, using given
connectionProvider to obtain connections to the
database, and given sqldef to execute SQL statements and serializer to serialize
Sagas. |
JdbcSagaStore(DataSource dataSource,
SagaSqlSchema sqldef)
Initializes a Saga Repository, using given
dataSource to obtain connections to the database, and
given sqldef to execute SQL statements. |
Copyright © 2010–2017. All rights reserved.