Examples of MeasurementDataNumeric


Examples of org.rhq.core.domain.measurement.MeasurementDataNumeric

    public MeasurementData nextValue(MeasurementScheduleRequest request) {
        // generate a random value between 95,000 and 105,000
        double value = 100000 + (RANDOM.nextInt(10000) - 5000);

        return new MeasurementDataNumeric(request, value);
    }
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.