CClash.CacheInfo.CacheInfo C# (CSharp) Method

CacheInfo() public method

public CacheInfo ( FileCacheStore statCache ) : System
statCache FileCacheStore
return System
        public CacheInfo(FileCacheStore statCache)
        {
            cache = statCache;
            Logging.Emit("creating cache info mutex");
            statMtx = new Mutex(false, "cclash_stat_" + cache.FolderPath.ToLower().GetHashCode());
            Logging.Emit("created cache info mutex");
        }