Package com.ngt.jopenmetaverse.shared.sim.message.LindenMessages

Examples of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.ChatSessionAcceptInvitation


    URI url = Client.network.getCurrentSim().Caps.CapabilityURI("ChatSessionRequest");

    if (url != null)
    {
      ChatSessionAcceptInvitation acceptInvite = new ChatSessionAcceptInvitation();
      acceptInvite.SessionID = session_id;

      CapsHttpClient request = new CapsHttpClient(url);
      request.BeginGetResponse(acceptInvite.Serialize(), OSDFormat.Xml, Client.settings.CAPS_TIMEOUT);

      synchronized (GroupChatSessions.getDictionary())
      {
        if (!GroupChatSessions.containsKey(session_id))
          GroupChatSessions.add(session_id, new ArrayList<ChatSessionMember>());
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.message.LindenMessages.ChatSessionAcceptInvitation

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.