Package com.cloud.agent.api

Examples of com.cloud.agent.api.PerformanceMonitorAnswer


    private Answer execute(PerformanceMonitorCommand cmd) {
        Connection conn = getConnection();
        String perfMon = getPerfMon(conn, cmd.getParams(), cmd.getWait());
        if (perfMon == null) {
            return new PerformanceMonitorAnswer(cmd, false, perfMon);
        } else
            return new PerformanceMonitorAnswer(cmd, true, perfMon);
    }
View Full Code Here

TOP

Related Classes of com.cloud.agent.api.PerformanceMonitorAnswer

Copyright © 2018 www.massapicom. 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.