Package org.jdesktop.wonderland.modules.sas.common

Examples of org.jdesktop.wonderland.modules.sas.common.SasProviderAppStopMessage


                                              this, msg.getMessageID(), msg.getCellID());
            logger.warning("connInfo = " + connInfo);
            sendResponse(msg.getMessageID(), connInfo);

        } else if (message instanceof SasProviderAppStopMessage) {
            SasProviderAppStopMessage msg = (SasProviderAppStopMessage) message;

            logger.warning("Received app stop message from server");
            logger.warning("launchMsgID= " + msg.getLaunchMessageID());

            listener.appStop(this, msg.getLaunchMessageID());

        } else {
            throw new RuntimeException("Unexpected message type "+message.getClass().getName());
        }
    }
View Full Code Here


        MessageID launchMessageID = SasProviderConnectionHandler.getLaunchMessageIDForCellAndProvider(
                                                                      thisRef, cellID);

        // Send a stop message to the provider
        if (launchMessageID != null) {
            SasProviderAppStopMessage msg = new SasProviderAppStopMessage(launchMessageID);
            try {
                sender.send(clientID, msg);
            } catch (Exception ex) {
                throw new RuntimeException(ex);
            }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.sas.common.SasProviderAppStopMessage

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.