Package org.jdesktop.wonderland.common.comms.messages

Examples of org.jdesktop.wonderland.common.comms.messages.DetachClientMessage


        }
       
        // send a message if our client is still connected
        if (simpleClient.isConnected()) {
            getInternalClient().send(
                 new DetachClientMessage(record.getClientID()));
        }

        // notify the client
        client.disconnected();
    }
View Full Code Here


                AttachClientMessage acm = (AttachClientMessage) message;
                listener.get().handleAttach(acm.getMessageID(),
                                            acm.getClientType(),
                                            acm.getProperties());
            } else if (message instanceof DetachClientMessage) {
                DetachClientMessage dcm = (DetachClientMessage) message;
                listener.get().handleDetach(dcm.getClientID(), false);
            }
        }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.common.comms.messages.DetachClientMessage

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.