ai.grakn.redismock.commands.RO_lpushx 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_lpushx extends RO_lpush {
RO_lpushx(RedisBase base, List params) {
super(base, params);
}
Slice response(){
Slice key = params().get(0);
Slice data = base().rawGet(key);
if(data != null){
return super.response();
}
return Response.integer(0);
}
}