Class GetExArgs
- java.lang.Object
-
- io.quarkus.redis.datasource.value.GetExArgs
-
- io.quarkus.redis.datasource.string.GetExArgs
-
- All Implemented Interfaces:
RedisCommandExtraArguments
@Deprecated public class GetExArgs extends GetExArgs implements RedisCommandExtraArguments
Deprecated.useGetExArgsinsteadArgument list for the Redis GETEX command.
-
-
Constructor Summary
Constructors Constructor Description GetExArgs()Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description GetExArgsex(long timeout)Deprecated.Set the specified expire time, in seconds.GetExArgsex(Duration timeout)Deprecated.Sets the expiration.GetExArgsexAt(long timestamp)Deprecated.Sets the expiration timeGetExArgsexAt(Instant timestamp)Deprecated.Sets the expiration timeGetExArgspersist()Deprecated.SetsPERSISTGetExArgspx(long timeout)Deprecated.Set the specified expire time, in milliseconds.GetExArgspx(Duration timeout)Deprecated.Set the specified expire time, in milliseconds.GetExArgspxAt(long timestamp)Deprecated.Set the specified Unix time at which the key will expire, in milliseconds.GetExArgspxAt(Instant timestamp)Deprecated.Set the specified Unix time at which the key will expire, in milliseconds.List<String>toArgs()Deprecated.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.quarkus.redis.datasource.RedisCommandExtraArguments
toArgs
-
-
-
-
Method Detail
-
ex
public GetExArgs ex(long timeout)
Deprecated.Set the specified expire time, in seconds.
-
exAt
public GetExArgs exAt(long timestamp)
Deprecated.Sets the expiration time
-
px
public GetExArgs px(long timeout)
Deprecated.Set the specified expire time, in milliseconds.
-
px
public GetExArgs px(Duration timeout)
Deprecated.Set the specified expire time, in milliseconds.
-
pxAt
public GetExArgs pxAt(long timestamp)
Deprecated.Set the specified Unix time at which the key will expire, in milliseconds.
-
pxAt
public GetExArgs pxAt(Instant timestamp)
Deprecated.Set the specified Unix time at which the key will expire, in milliseconds.
-
persist
public GetExArgs persist()
Deprecated.SetsPERSIST
-
-