ai.grakn.redismock.commands.RO_ttl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of redis-mock Show documentation
Show all versions of redis-mock Show documentation
In memory Redis mock for testing
package ai.grakn.redismock.commands;
import ai.grakn.redismock.RedisBase;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_ttl extends AbstractRedisOperation {
RO_ttl(RedisBase base, List params) {
super(base, params, 1, null, null);
}
Slice finalReturn(Long pttl){
return Response.integer((pttl + 999) / 1000);
}
Slice response() {
Long pttl = base().getTTL(params().get(0));
if (pttl == null) {
return Response.integer(-2L);
}
if (pttl == -1) {
return Response.integer(-1L);
}
return finalReturn(pttl);
}
}