ai.grakn.redismock.commands.RO_expire 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.Slice;
import java.util.List;
class RO_expire extends RO_pexpire {
RO_expire(RedisBase base, List params) {
super(base, params);
}
@Override
long getValue(List params){
return super.getValue(params) * 1000;
}
}