|
| 1 | +/* |
| 2 | + * Copyright 2025 the original author or authors. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * https://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | +package org.springframework.data.redis.core; |
| 17 | + |
| 18 | +import java.time.Duration; |
| 19 | +import java.time.Instant; |
| 20 | +import java.util.concurrent.TimeUnit; |
| 21 | + |
| 22 | +import org.springframework.data.redis.connection.ExpirationOptions; |
| 23 | +import org.springframework.data.redis.core.types.Expiration; |
| 24 | +import org.springframework.data.redis.core.types.Expirations; |
| 25 | +import org.springframework.lang.Nullable; |
| 26 | + |
| 27 | +/** |
| 28 | + * Key Expiration operations bound to a key. |
| 29 | + * |
| 30 | + * @author Mark Paluch |
| 31 | + * @since 3.5 |
| 32 | + */ |
| 33 | +public interface BoundKeyExpirationOperations { |
| 34 | + |
| 35 | + /** |
| 36 | + * Apply {@link Expiration} to the bound key without any additional constraints. |
| 37 | + * |
| 38 | + * @param expiration the expiration definition. |
| 39 | + * @return changes to the key. {@literal null} when used in pipeline / transaction. |
| 40 | + */ |
| 41 | + default ExpireChanges.ExpiryChangeState expire(Expiration expiration) { |
| 42 | + return expire(expiration, ExpirationOptions.none()); |
| 43 | + } |
| 44 | + |
| 45 | + /** |
| 46 | + * Apply {@link Expiration} to the bound key given {@link ExpirationOptions expiration options}. |
| 47 | + * |
| 48 | + * @param expiration the expiration definition. |
| 49 | + * @param options expiration options. |
| 50 | + * @return changes to the key. {@literal null} when used in pipeline / transaction. |
| 51 | + */ |
| 52 | + @Nullable |
| 53 | + ExpireChanges.ExpiryChangeState expire(Expiration expiration, ExpirationOptions options); |
| 54 | + |
| 55 | + /** |
| 56 | + * Set time to live for the bound key. |
| 57 | + * |
| 58 | + * @param timeout the amount of time after which the key will be expired, must not be {@literal null}. |
| 59 | + * @return changes to the key. {@literal null} when used in pipeline / transaction. |
| 60 | + * @throws IllegalArgumentException if the timeout is {@literal null}. |
| 61 | + * @see <a href="https://redis.io/docs/latest/commands/expire/">Redis Documentation: EXPIRE</a> |
| 62 | + * @since 3.5 |
| 63 | + */ |
| 64 | + @Nullable |
| 65 | + ExpireChanges.ExpiryChangeState expire(Duration timeout); |
| 66 | + |
| 67 | + /** |
| 68 | + * Set the expiration for the bound key as a {@literal date} timestamp. |
| 69 | + * |
| 70 | + * @param expireAt must not be {@literal null}. |
| 71 | + * @return changes to the key. {@literal null} when used in pipeline / transaction. |
| 72 | + * @throws IllegalArgumentException if the instant is {@literal null} or too large to represent as a {@code Date}. |
| 73 | + * @see <a href="https://redis.io/docs/latest/commands/expireat/">Redis Documentation: EXPIRE</a> |
| 74 | + * @since 3.5 |
| 75 | + */ |
| 76 | + @Nullable |
| 77 | + ExpireChanges.ExpiryChangeState expireAt(Instant expireAt); |
| 78 | + |
| 79 | + /** |
| 80 | + * Remove the expiration from the bound key. |
| 81 | + * |
| 82 | + * @return changes to the key. {@literal null} when used in pipeline / transaction. |
| 83 | + * @see <a href="https://redis.io/docs/latest/commands/persist/">Redis Documentation: PERSIST</a> |
| 84 | + * @since 3.5 |
| 85 | + */ |
| 86 | + @Nullable |
| 87 | + ExpireChanges.ExpiryChangeState persist(); |
| 88 | + |
| 89 | + /** |
| 90 | + * Get the time to live for the bound key in seconds. |
| 91 | + * |
| 92 | + * @return the actual expirations in seconds for the key. {@literal null} when used in pipeline / transaction. |
| 93 | + * @see <a href="https://redis.io/docs/latest/commands/ttl/">Redis Documentation: TTL</a> |
| 94 | + * @since 3.5 |
| 95 | + */ |
| 96 | + @Nullable |
| 97 | + Expirations.TimeToLive getTimeToLive(); |
| 98 | + |
| 99 | + /** |
| 100 | + * Get the time to live for the bound key and convert it to the given {@link TimeUnit}. |
| 101 | + * |
| 102 | + * @param timeUnit must not be {@literal null}. |
| 103 | + * @return the actual expirations for the key in the given time unit. {@literal null} when used in pipeline / |
| 104 | + * transaction. |
| 105 | + * @see <a href="https://redis.io/docs/latest/commands/ttl/">Redis Documentation: TTL</a> |
| 106 | + * @since 3.5 |
| 107 | + */ |
| 108 | + @Nullable |
| 109 | + Expirations.TimeToLive getTimeToLive(TimeUnit timeUnit); |
| 110 | + |
| 111 | +} |
0 commit comments