Package org.globus.workspace.scheduler

Examples of org.globus.workspace.scheduler.StateChangeEvent


        }
    }


    private void notifySiManager(int id, int state) {
        final StateChangeEvent simEvent = new StateChangeEvent(id,
                                                               state,
                                                               this.siManager);

        this.timerManager.schedule(simEvent, 20);
    }
View Full Code Here


        //
        // In the default scheduler's case, since it handles the request
        // immediately, not doing this could significantly delay the op
        // return to the client.

        final StateChangeEvent schedulerEvent = new StateChangeEvent(ids,
                                      WorkspaceConstants.STATE_FIRST_LEGAL,
                                      this.scheduler);

        this.timerManager.schedule(schedulerEvent, 20);
       
        if(!spotInstances){
            final StateChangeEvent simEvent = new StateChangeEvent(ids,
                    WorkspaceConstants.STATE_FIRST_LEGAL,
                    this.asyncManager);

            this.timerManager.schedule(simEvent, 50);           
        }
View Full Code Here

TOP

Related Classes of org.globus.workspace.scheduler.StateChangeEvent

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.