| 46 | |
| 47 | struct DocumentLayer : ReferenceCounted<DocumentLayer>, NonCopyable { |
| 48 | DocumentLayer(ConnectionOptions defaultConnectionOptions, |
| 49 | Reference<FDB::Database> database, |
| 50 | Reference<DirectorySubspace> rootDirectory) |
| 51 | : defaultConnectionOptions(defaultConnectionOptions), |
| 52 | database(database), |
| 53 | backgroundTasks(false), |
| 54 | rootDirectory(rootDirectory), |
| 55 | mm(new MetadataManager(this)) {} |
| 56 | |
| 57 | Reference<FDB::Database> database; |
| 58 | Reference<MetadataManager> mm; |
nothing calls this directly
no outgoing calls
no test coverage detected