Uses of Class
org.axonframework.eventhandling.tokenstore.jdbc.JdbcTokenStore.Builder
Packages that use JdbcTokenStore.Builder
-
Uses of JdbcTokenStore.Builder in org.axonframework.eventhandling.tokenstore.jdbc
Methods in org.axonframework.eventhandling.tokenstore.jdbc that return JdbcTokenStore.BuilderModifier and TypeMethodDescriptionstatic JdbcTokenStore.BuilderJdbcTokenStore.builder()Instantiate a Builder to be able to create aJdbcTokenStore.JdbcTokenStore.Builder.claimTimeout(TemporalAmount claimTimeout) Sets theclaimTimeoutspecifying the amount of time this process will wait after which this process will force a claim of aTrackingToken.JdbcTokenStore.Builder.connectionProvider(ConnectionProvider connectionProvider) Sets theConnectionProviderused to provide connections to the underlying database.JdbcTokenStore.Builder.contentType(Class<?> contentType) Sets thecontentTypeto which aTrackingTokenshould be serialized.Sets thenodeIdto identify ownership of the tokens.JdbcTokenStore.Builder.schema(TokenSchema schema) Sets theschemawhich describes a JDBC token entry for thisTokenStore.JdbcTokenStore.Builder.serializer(Serializer serializer) Sets theSerializerused to de-/serializeTrackingTokens with.Constructors in org.axonframework.eventhandling.tokenstore.jdbc with parameters of type JdbcTokenStore.BuilderModifierConstructorDescriptionprotectedJdbcTokenStore(JdbcTokenStore.Builder builder) Instantiate aJdbcTokenStorebased on the fields contained in theJdbcTokenStore.Builder.