All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ai.grakn.redismock.ServiceOptions Maven / Gradle / Ivy

There is a newer version: 0.1.6
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy