Uses of Class
org.axonframework.modelling.saga.repository.jdbc.JdbcSagaStore.Builder
Packages that use JdbcSagaStore.Builder
-
Uses of JdbcSagaStore.Builder in org.axonframework.modelling.saga.repository.jdbc
Methods in org.axonframework.modelling.saga.repository.jdbc that return JdbcSagaStore.BuilderModifier and TypeMethodDescriptionstatic JdbcSagaStore.BuilderJdbcSagaStore.builder()Instantiate a Builder to be able to create aJdbcSagaStore.JdbcSagaStore.Builder.connectionProvider(ConnectionProvider connectionProvider) Sets theConnectionProviderwhich provides access to a JDBC connection.JdbcSagaStore.Builder.dataSource(DataSource dataSource) Sets theConnectionProviderby providing aDataSource.JdbcSagaStore.Builder.serializer(Serializer serializer) Sets theSerializerused to de-/serialize a Saga instance.JdbcSagaStore.Builder.sqlSchema(SagaSqlSchema sqlSchema) Sets theSagaSqlSchemadefining the SQL operations to execute for thisSagaStoreimplementation.Constructors in org.axonframework.modelling.saga.repository.jdbc with parameters of type JdbcSagaStore.BuilderModifierConstructorDescriptionprotectedJdbcSagaStore(JdbcSagaStore.Builder builder) Instantiate aJdbcSagaStorebased on the fields contained in theJdbcSagaStore.Builder.