Package org.jdesktop.wonderland.testharness.manager.common

Examples of org.jdesktop.wonderland.testharness.manager.common.MasterStatus


        void addTestDirector(TestDirector testDirector) {
            testDirectors.add(testDirector);
        }
       
        void sendStatusMessage(int activeSlaves, int passiveSlaves) {
            lastStatusMessage = new MasterStatus(activeSlaves, passiveSlaves);
            try {
                send(lastStatusMessage);
            } catch (IOException ex) {
                Logger.getLogger(MasterMain.class.getName()).log(Level.SEVERE, null, ex);
            }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.testharness.manager.common.MasterStatus

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.