ai.grakn.redismock.commands.RO_pttl 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_pttl extends RO_ttl {
RO_pttl(RedisBase base, List params) {
super(base, params);
}
Slice finalReturn(Long pttl){
return Response.integer(pttl);
}
}