Uses of Class
io.github.ravocode.avoonce.core.config.IdempotencyConfig
Packages that use IdempotencyConfig
Package
Description
-
Uses of IdempotencyConfig in io.github.ravocode.avoonce.caffeine
Constructors in io.github.ravocode.avoonce.caffeine with parameters of type IdempotencyConfigModifierConstructorDescriptionConstructs aCaffeineIdempotencyRepositorywith the given configuration. -
Uses of IdempotencyConfig in io.github.ravocode.avoonce.jdbc
Constructors in io.github.ravocode.avoonce.jdbc with parameters of type IdempotencyConfigModifierConstructorDescriptionJdbcIdempotencyRepository(DataSource dataSource, IdempotencyConfig config) Constructs a JDBC-backed repository using the supplied data source and configuration. -
Uses of IdempotencyConfig in io.github.ravocode.avoonce.redis
Constructors in io.github.ravocode.avoonce.redis with parameters of type IdempotencyConfigModifierConstructorDescriptionRedisIdempotencyRepository(RedisOperations redisOperations, IdempotencyConfig config) Constructs a RedisIdempotencyRepository. -
Uses of IdempotencyConfig in io.github.ravocode.avoonce.spring
Methods in io.github.ravocode.avoonce.spring that return IdempotencyConfigModifier and TypeMethodDescriptionIdempotencyAutoConfiguration.idempotencyConfig(IdempotencyProperties properties) Configures the coreIdempotencyConfigbased on application properties.Methods in io.github.ravocode.avoonce.spring with parameters of type IdempotencyConfigModifier and TypeMethodDescriptionCaffeineIdempotencyAutoConfiguration.caffeineAutoRepository(IdempotencyConfig config) Auto-wires the Caffeine in-memory repository when no other store is present and store property is auto.CaffeineIdempotencyAutoConfiguration.caffeineExplicitRepository(IdempotencyConfig config) Wires the Caffeine in-memory repository whenavoonce.idempotency.store=caffeineis explicitly set.JdbcIdempotencyAutoConfiguration.jdbcAutoRepository(DataSource dataSource, IdempotencyConfig config) Auto-wires the JDBC repository when DataSource is present, Caffeine is absent, and store property is auto.JdbcIdempotencyAutoConfiguration.jdbcExplicitRepository(DataSource dataSource, IdempotencyConfig config) Wires the JDBC repository whenavoonce.idempotency.store=jdbcis explicitly set.RedisIdempotencyAutoConfiguration.redisAutoRepository(RedisOperations redisOperations, IdempotencyConfig config) Auto-wires the Redis repository when RedisOperations bean is present and store property is auto.RedisIdempotencyAutoConfiguration.redisExplicitRepository(RedisOperations redisOperations, IdempotencyConfig config) Wires the Redis repository whenavoonce.idempotency.store=redisis explicitly set.