Examples of GetULong()


Examples of com.ngt.jopenmetaverse.shared.types.UUID.GetULong()

    /// <returns></returns>
    public BigInteger RequestAssetXfer(String filename, boolean deleteOnCompletion, boolean useBigPackets, UUID vFileID, AssetType vFileType,
        boolean fromCache)
    {
        UUID uuid = UUID.Random();
        BigInteger id = uuid.GetULong();

        XferDownload transfer = new XferDownload();
        transfer.XferID = id;
        transfer.ID = new UUID(id.longValue()); // Our dictionary tracks transfers with UUIDs, so convert the ulong back
        transfer.Filename = filename;
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.