Package org.jdesktop.wonderland.server.comms

Examples of org.jdesktop.wonderland.server.comms.CommsManager


  }

  if (message instanceof VoiceChatBusyMessage) {
      VoiceChatBusyMessage msg = (VoiceChatBusyMessage) message;

      CommsManager cm = CommsManagerFactory.getCommsManager();
     
            WonderlandClientID id = cm.getWonderlandClientID(msg.getCaller().getClientID());

            if (id == null) {
                logger.warning("No WonderlandClientID for caller "
                    + msg.getCaller());
                return;
View Full Code Here


  if (group.equals(livePlayerAudioGroup.getId()) || group.equals(stationaryPlayerAudioGroup.getId())) {
      return;
  }

  CommsManager cm = CommsManagerFactory.getCommsManager();
     
        VoiceChatInfoResponseMessage message = new VoiceChatInfoResponseMessage(group, chatters);

  for (int i = 0; i < chatters.length; i++) {
      if (chatters[i].getClientID() == null) {
    /*
     * It's an outworlder.
     */
    continue;
      }

            WonderlandClientID clientID = cm.getWonderlandClientID(chatters[i].getClientID());

      if (clientID == null) {
    logger.warning("Can't find WonderlandClientID for " + chatters[i]);
    continue;
      }
View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.server.comms.CommsManager

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.