Examples of DirGroupsReplyPacket


Examples of com.ngt.jopenmetaverse.shared.protocol.DirGroupsReplyPacket

  protected void DirGroupsReplyHandler(Object sender, PacketReceivedEventArgs e) throws UnsupportedEncodingException
  {
    if (OnDirGroups != null)
    {
      Packet packet = e.getPacket();
      DirGroupsReplyPacket groupsReply = (DirGroupsReplyPacket)packet;
      List<GroupSearchData> matches = new ArrayList<GroupSearchData>(groupsReply.QueryReplies.length);
      for (DirGroupsReplyPacket.QueryRepliesBlock reply : groupsReply.QueryReplies)
      {
        GroupSearchData groupsData = new GroupSearchData();
        groupsData.GroupID = reply.GroupID;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.