ai.grakn.redismock.commands.RO_quit 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.RedisClient;
import ai.grakn.redismock.Response;
import ai.grakn.redismock.Slice;
import java.util.List;
class RO_quit extends AbstractRedisOperation {
private final RedisClient client;
RO_quit(RedisBase base, RedisClient client, List params) {
super(base, params,0, null, null);
this.client = client;
}
Slice response() {
client.sendResponse(Response.clientResponse("quit", Response.OK), "quit");
client.close();
return Response.SKIP;
}
}