Package org.jdesktop.wonderland.modules.audiomanager.common.messages.voicechat

Examples of org.jdesktop.wonderland.modules.audiomanager.common.messages.voicechat.VoiceChatTransientMemberMessage


  if (info.isTransientMember) {
      /*
       * We don't necessarily have the presence info for the player so we have
       * to send the call ID.
       */
      sender.send(new VoiceChatTransientMemberMessage(audioGroup.getId(),
          player.getId(), true));
  } else {
      handleBystanders(audioGroup, player, info.chatType);
     
      sendVoiceChatInfo(sender, audioGroup.getId());
View Full Code Here


        if (info != null && info.isTransientMember) {
            /*
             * We don't necessarily have the presence info for the player so we have
             * to send the call ID.
             */
            sender.send(new VoiceChatTransientMemberMessage(audioGroup.getId(),
                player.getId(), false));
  }

  PresenceInfo presenceInfo = playerMap.remove(player.getId());

View Full Code Here

TOP

Related Classes of org.jdesktop.wonderland.modules.audiomanager.common.messages.voicechat.VoiceChatTransientMemberMessage

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.