Package org.rhq.core.system

Examples of org.rhq.core.system.AggregateProcessInfo


        default:
            throw new InvalidPluginConfigurationException("Unknown type: " + processComponentConfig.getType());
        }

        if (processComponentConfig.isFullProcessTree()) {
            return new AggregateProcessInfo(pid);
        } else {
            return new ProcessInfo(pid);
        }
    }
View Full Code Here


        DatabasePluginUtil.safeClose(this.sharedConnection);
        this.sharedConnection = null;
    }

    private AggregateProcessInfo findProcessInfo() {
        AggregateProcessInfo result = null;
        // is still running reuse
        if (aggregateProcessInfo != null && aggregateProcessInfo.freshSnapshot().isRunning()) {
            result = aggregateProcessInfo;
        } else {
            long pid = findPID();
View Full Code Here

TOP

Related Classes of org.rhq.core.system.AggregateProcessInfo

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.