ai.grakn.redismock.ServiceOptions 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;
/**
* Created by Xiaolu on 2015/4/22.
*/
public class ServiceOptions {
private int closeSocketAfterSeveralCommands = 0;
public ServiceOptions() {}
public void setCloseSocketAfterSeveralCommands(int count) {
this.closeSocketAfterSeveralCommands = count;
}
public int getCloseSocketAfterSeveralCommands() {
return closeSocketAfterSeveralCommands;
}
}