Package | Description |
---|---|
org.axonframework.common.jdbc | |
org.axonframework.eventstore.jdbc |
JDBC Implementation of the EventStore.
|
org.axonframework.saga.repository.jdbc |
Modifier and Type | Class and Description |
---|---|
class |
DataSourceConnectionProvider
ConnectionProvider implementation that obtains a connection from a given DataSource.
|
class |
SpringDataSourceConnectionProvider
ConnectionProvider implementation that is aware of Transaction Managers and provides the connection attached to an
active transaction manager, instead of asking a Data Source directly.
|
class |
UnitOfWorkAwareConnectionProviderWrapper
Wrapper for a ConnectionProvider that checks if a connection is already attached to the Unit of Work, favoring that
connection over creating a new one.
|
Constructor and Description |
---|
UnitOfWorkAwareConnectionProviderWrapper(ConnectionProvider delegate)
Initializes a ConnectionProvider, using given
delegate to create a new instance, when on is not
already attached to the Unit of Work. |
UnitOfWorkAwareConnectionProviderWrapper(ConnectionProvider delegate,
boolean attachAsInheritedResource)
Initializes a ConnectionProvider, using given
delegate to create a new instance, when on is not
already attached to the Unit of Work. |
Constructor and Description |
---|
DefaultEventEntryStore(ConnectionProvider connectionProvider)
Initialize the EventEntryStore using a Generic SQL Schema, and given
connectionProvider to obtain
connections. |
DefaultEventEntryStore(ConnectionProvider connectionProvider,
EventSqlSchema<T> sqlSchema)
Initialize the EventEntryStore, fetching connections from the given
connectionProvider and
executing
SQL
statements using given sqlSchema . |
JdbcEventStore(ConnectionProvider connectionProvider)
Initialize a JdbcEventStore using the default
EntryStore and an XStreamSerializer , which serializes events as XML. |
Constructor and Description |
---|
JdbcSagaRepository(ConnectionProvider connectionProvider)
Initializes a Saga Repository, using given
connectionProvider to obtain connections to the
database, using a Generic SQL Schema. |
JdbcSagaRepository(ConnectionProvider connectionProvider,
SagaSqlSchema sqldef)
Initializes a Saga Repository, using given
connectionProvider to obtain connections to the
database, and given sqldef to execute SQL statements. |
JdbcSagaRepository(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. |
Copyright © 2010-2014. All Rights Reserved.