Package-level declarations
Types
Link copied to clipboard
interface IdempotentStore
Persists idempotent execution state.
Link copied to clipboard
class JdbcIdempotentStore(jdbcTemplate: JdbcTemplate, tableName: String, clock: Clock = Clock.systemUTC()) : IdempotentStore
JDBC implementation of IdempotentStore.
Link copied to clipboard
class RedisIdempotentStore(stringRedisTemplate: StringRedisTemplate, jsonMapper: JsonMapper) : IdempotentStore
Redis implementation of IdempotentStore.