Package redis.clients.jedis.params
Class XClaimParams
java.lang.Object
redis.clients.jedis.params.XClaimParams
- All Implemented Interfaces:
IParams
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidaddParams(CommandArguments args) force()Creates the pending message entry in the PEL even if certain specified IDs are not already in the PEL assigned to a different client.idle(long idleTime) Set the idle time (last time it was delivered) of the message.retryCount(int count) Set the retry counter to the specified value.time(long idleUnixTime) Set the idle time to a specific Unix time (in milliseconds).static XClaimParams
-
Field Details
-
idleTime
-
idleUnixTime
-
retryCount
-
force
private boolean force
-
-
Constructor Details
-
XClaimParams
public XClaimParams()
-
-
Method Details
-
xClaimParams
-
idle
Set the idle time (last time it was delivered) of the message.- Parameters:
idleTime-- Returns:
- XClaimParams
-
time
Set the idle time to a specific Unix time (in milliseconds).- Parameters:
idleUnixTime-- Returns:
- XClaimParams
-
retryCount
Set the retry counter to the specified value.- Parameters:
count-- Returns:
- XClaimParams
-
force
Creates the pending message entry in the PEL even if certain specified IDs are not already in the PEL assigned to a different client.- Returns:
- XClaimParams
-
addParams
-