Uses of Class
org.springframework.data.redis.core.ExpireChanges
Packages that use ExpireChanges
-
Uses of ExpireChanges in org.springframework.data.redis.core
Methods in org.springframework.data.redis.core that return ExpireChangesModifier and TypeMethodDescription@Nullable ExpireChanges<HK> Set time to live for the bound hash key/hash fields.default ExpireChanges<HK> BoundHashFieldExpirationOperations.expire(Expiration expiration) ApplyExpirationto the bound hash key/hash fields without any additional constraints.BoundHashFieldExpirationOperations.expire(Expiration expiration, ExpirationOptions options) ApplyExpirationto the bound hash key/hash fields givenexpiration options.ExpireChanges<@NonNull HK> HashOperations.expire(@NonNull H key, @NonNull Duration timeout, @NonNull Collection<@NonNull HK> hashKeys) Set time to live for givenhashKey.ExpireChanges<@NonNull HK> HashOperations.expire(@NonNull H key, @NonNull Expiration expiration, @NonNull ExpirationOptions options, @NonNull Collection<@NonNull HK> hashKeys) Apply the expiration for givenhashKeys.@Nullable ExpireChanges<HK> Set the expiration for the bound hash key/hash fields as a date timestamp.ExpireChanges<@NonNull HK> HashOperations.expireAt(@NonNull H key, @NonNull Instant expireAt, @NonNull Collection<@NonNull HK> hashKeys) Set the expiration for givenhashKeysas a date timestamp.static <K> ExpireChanges<K> Factory Method to createExpireChangesfrom raw sources.@Nullable ExpireChanges<HK> BoundHashFieldExpirationOperations.persist()Remove the expiration from the bound hash key/hash fields.ExpireChanges<@NonNull HK> HashOperations.persist(@NonNull H key, @NonNull Collection<@NonNull HK> hashKeys) Remove the expiration from givenhashKeys.Methods in org.springframework.data.redis.core that return types with arguments of type ExpireChangesModifier and TypeMethodDescriptionReactiveHashOperations.expire(H key, Duration timeout, Collection<HK> hashKeys) Set time to live for given hashKeys stored within key.ReactiveHashOperations.expire(H key, Expiration expiration, ExpirationOptions options, Collection<HK> hashKeys) Set time to live for given hashKeys stored within key.@Nullable Mono<ExpireChanges<HK>> ReactiveHashOperations.expireAt(H key, Instant expireAt, Collection<HK> hashKeys) Set the expiration for givenhashKeyas a date timestamp.@Nullable Mono<ExpireChanges<HK>> ReactiveHashOperations.persist(H key, Collection<HK> hashKeys) Remove the expiration from givenhashKey.