Package com.ngt.jopenmetaverse.shared.protocol

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


  /// <param name="transactionID">Transaction (Query) ID which can be associated with results from your request.</param>
  /// <returns>Transaction (Query) ID which can be associated with results from your request.</returns>
  public UUID StartPlacesSearch(EnumSet<DirFindFlags> findFlags, ParcelCategory searchCategory, String searchText, String simulatorName,
      UUID groupID, UUID transactionID)
  {
    PlacesQueryPacket find = new PlacesQueryPacket();
    find.AgentData.AgentID = Client.self.getAgentID();
    find.AgentData.SessionID = Client.self.getSessionID();
    find.AgentData.QueryID = groupID;

    find.TransactionData.TransactionID = transactionID;
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.protocol.PlacesQueryPacket

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.