}
throw new RuntimeException("Error while processing");
}
PerformanceNoInfo info = new PerformanceNoInfo(id, releaseNo,
client.substring(client.lastIndexOf(".") + 1), runType, noOfThreads, noOfOperations, totalTime,
runCounter);
if (avgLatency != null)
{
info.setAvgLatency(avgLatency.round(MathContext.DECIMAL32));
}
if (throughput != null)
{
info.setThroughput(throughput.round(MathContext.DECIMAL32));
}
crudUtils.persistInfo(info);
timeTakenByClient.put(client, throughput);
}
}