Examples of PerformanceNoInfo


Examples of com.impetus.kundera.ycsb.entities.PerformanceNoInfo

                    }
                    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);
            }
        }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.