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> >(); } }
internal LfxBlob(LfxBlobStore store, LfxHash hash, string path) { m_store = store; m_hash = hash; m_file = path; }