コード例 #1
0
ファイル: LfxBlobCache.cs プロジェクト: kingces95/lfx
 public LfxBlobCache(string storeDir, LfxBlobCache parent = null)
 {
     m_store       = new LfxBlobStore(storeDir);
     m_parentCache = parent;
     if (m_parentCache == null)
     {
         m_archives = new ConcurrentDictionary <LfxArchivePointer, Task <TempDir> >();
     }
 }
コード例 #2
0
ファイル: LfxBlob.cs プロジェクト: kingces95/lfx
 internal LfxBlob(LfxBlobStore store, LfxHash hash, string path)
 {
     m_store = store;
     m_hash  = hash;
     m_file  = path;
 }