Uses of Class
org.axonframework.messaging.eventhandling.deadletter.jdbc.DeadLetterSchema
Packages that use DeadLetterSchema
Package
Description
Part of the Axon Extension module.
Part of the Axon Messaging module.
-
Uses of DeadLetterSchema in org.axonframework.extension.springboot.autoconfig
Methods in org.axonframework.extension.springboot.autoconfig that return DeadLetterSchemaModifier and TypeMethodDescriptionJdbcDeadLetterQueueAutoConfiguration.deadLetterSchema()Creates a defaultDeadLetterSchemabean using the default column and table names.Methods in org.axonframework.extension.springboot.autoconfig with parameters of type DeadLetterSchemaModifier and TypeMethodDescriptionJdbcDeadLetterQueueAutoConfiguration.jdbcDeadLetterQueueFactory(DataSource dataSource, EventConverter eventConverter, Converter genericConverter, DeadLetterSchema schema) Creates a JDBC-backedSequencedDeadLetterQueueFactorythat instantiates aJdbcSequencedDeadLetterQueueper event handling component. -
Uses of DeadLetterSchema in org.axonframework.messaging.eventhandling.deadletter.jdbc
Methods in org.axonframework.messaging.eventhandling.deadletter.jdbc that return DeadLetterSchemaModifier and TypeMethodDescriptionDeadLetterSchema.Builder.build()Initializes aDeadLetterSchemaas specified through this Builder.static DeadLetterSchemaDeadLetterSchema.defaultSchema()Instantiate a defaultDeadLetterSchemausing the pre-configured column names.Methods in org.axonframework.messaging.eventhandling.deadletter.jdbc with parameters of type DeadLetterSchemaModifier and TypeMethodDescriptionprotected StringGenericDeadLetterTableFactory.createTableSql(DeadLetterSchema schema) Constructs the SQL to create a dead-letter table, using the givenschemato deduce the table and column names.DeadLetterTableFactory.createTableStatement(Connection connection, DeadLetterSchema schema) Creates aStatementto use for construction of aDeadLetterentry table and its indices.GenericDeadLetterTableFactory.createTableStatement(Connection connection, DeadLetterSchema schema) protected StringGenericDeadLetterTableFactory.processingGroupIndexSql(DeadLetterSchema schema) Constructs the SQL to create an index of theprocessing group, using the givenschemato deduce the table and column names.DefaultDeadLetterJdbcConverter.Builder.schema(DeadLetterSchema schema) Sets the givenschemaused to define the column names / labels with to return fields from theResultSet.DefaultDeadLetterStatementFactory.Builder.schema(DeadLetterSchema schema) Sets the givenschemaused to define the table and column names used when constructing allPreparedStatements.JdbcSequencedDeadLetterQueue.Builder.schema(DeadLetterSchema schema) Sets theDeadLetterSchemaused to constructs the table and indices required by thisSequencedDeadLetterQueue.protected StringGenericDeadLetterTableFactory.sequenceIdentifierIndexSql(DeadLetterSchema schema) Constructs the SQL to create an index for theprocessing groupandsequence indentifiercombination, using the givenschemato deduce the table and column names.