ai.grakn.redismock.commands.RO_pexpire 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.nio.charset.StandardCharsets;
import java.util.List;
import static ai.grakn.redismock.Utils.convertToLong;
class RO_pexpire extends AbstractRedisOperation {
RO_pexpire(RedisBase base, List params) {
super(base, params, 2, null, null);
}
long getValue(List params){
return convertToLong(new String(params.get(1).data(), StandardCharsets.UTF_8));
}
Slice response() {
return Response.integer(base().setTTL(params().get(0), getValue(params())));
}
}