Examples of RPQueryCurrentState


Examples of org.globus.workspace.client_core.actions.RPQueryCurrentState

            // off the events its waiting for.  This is a modest invasion into
            // implementation knowledge, but it's very convenient.

            final FutureTask[] queryTasks = new FutureTask[workspaces.length];
            for (int i = 0; i < workspaces.length; i++) {
                final RPQueryCurrentState action =
                        new RPQueryCurrentState(portTypes[i], this.pr);

                action.setStateConduit(stateConduit, workspaces[i].getEpr());
                action.setTerminationConduit(termConduit,
                                             workspaces[i].getEpr());
                queryTasks[i] = new FutureTask(action);
            }

            for (int i = 0; i < queryTasks.length; i++) {
View Full Code Here

Examples of org.globus.workspace.client_core.actions.RPQueryCurrentState

            if (wal == null) {

                final AddressIDPair addrID =
                    WorkspaceMap.chooseAddrID(epr, this.pr);

                final RPQueryCurrentState action =
                        new RPQueryCurrentState(epr, this.stubConf, this.pr);
                action.setStateConduit(this, epr);
                action.setTerminationConduit(this, epr);

                // Can't use FutureTask because of the way scheduleWithFixedDelay
                // will wrap the object.  Results in just one call instead of
                // repeating (thread state gets put into "RAN" in the inner
                // callable.  Instead, made RPQueryCurrentState also implement
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.