Files
ma/nextflow/docs/developer/diagrams/nextflow.cache.mmd
2026-04-29 23:01:54 +02:00

22 lines
392 B
Plaintext

classDiagram
%%
%% nextflow.cache
%%
Session --* CacheDB
CacheDB --* CacheStore
CacheStore <|-- DefaultCacheStore
CacheStore <|-- CloudCacheStore
class DefaultCacheStore {
uniqueId : UUID
runName : String
baseDir : Path
}
class CloudCacheStore {
uniqueId : UUID
runName : String
basePath : Path
}