Package com.ngt.jopenmetaverse.shared.sim.events.asm

Examples of com.ngt.jopenmetaverse.shared.sim.events.asm.ComputeAssetCacheFilenameEventArgs


    /// <returns>String with the file name of the cahced asset</returns>
    private String FileName(String assetID)
    {
          if (computeAssetCacheFilenameDelegate != null)
          {
                  return computeAssetCacheFilenameDelegate.execute(new ComputeAssetCacheFilenameEventArgs(Client.settings.ASSET_CACHE_DIR, assetID));
          }
            return Client.settings.ASSET_CACHE_DIR + "/" + assetID.toString();
    }
View Full Code Here


  /// <returns>String with the file name of the cahced asset</returns>
  private String FileName(UUID assetID)
  {
    if (computeAssetCacheFilenameDelegate != null)
    {
      return computeAssetCacheFilenameDelegate.execute(new ComputeAssetCacheFilenameEventArgs(Client.settings.ASSET_CACHE_DIR, assetID.toString()));
    }
    return Client.settings.ASSET_CACHE_DIR + "/" + assetID.toString();
  }
View Full Code Here

TOP

Related Classes of com.ngt.jopenmetaverse.shared.sim.events.asm.ComputeAssetCacheFilenameEventArgs

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.