Package org.globus.workspace.client.modes.aux

Examples of org.globus.workspace.client.modes.aux.SubscribeWait


            return; // *** EARLY RETURN ***
        }

        try {

            SubscribeWait waiter = null;
            State useExitState = this.exitState;
            if (this.subscribeBeforeAction) {

                if (this.autodestroy) {
                    // there's no need for the waiter to wait for exit states
                    // in the auto-destroy case because we're setting up an
                    // additional destroy task when TransportReady is reached
                    useExitState = null;
                }

                waiter = this.subscribeLaunch.subscribeNoWait(
                                                     this.workspaces,
                                                     useExitState,
                                                     this.veryTerseNotifyState,
                                                     this.autodestroy,
                                                     false,
                                                     this.exitState,
                                                     false);
            }

            this._runImpl();

            if (waiter != null) {
                waiter.run(useExitState);
            }

        } catch (ExitNow e) {
            throw e;
        } catch (BaseFaultType e) {
View Full Code Here

TOP

Related Classes of org.globus.workspace.client.modes.aux.SubscribeWait

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.