private boolean logStuff;
private int numWorkers;
private int requestsPerBatch = 1000;
public LoadGeneratingRunnable(boolean logStuff, long numRequestsToSend, int numWorkers){
client = new FixedRequestClient("localhost", 7473, PerformanceRoutes.NO_SERIALIZATION_AND_NO_DESERIALIZATION_AND_NO_INTROSPECTION, requestsPerBatch );
this.logStuff = logStuff;
this.numRequestsToSend = numRequestsToSend;
this.numWorkers = numWorkers;
}