| 1815 | }; |
| 1816 | |
| 1817 | LogsDB::LogsDB( |
| 1818 | Logger& logger, |
| 1819 | std::shared_ptr<XmonAgent>& xmon, |
| 1820 | SharedRocksDB& sharedDB, |
| 1821 | ReplicaId replicaId, |
| 1822 | LogIdx lastRead, |
| 1823 | bool noReplication, |
| 1824 | bool avoidBeingLeader) |
| 1825 | { |
| 1826 | _impl = new LogsDBImpl(logger, xmon, sharedDB, replicaId, lastRead, noReplication, avoidBeingLeader); |
| 1827 | } |
| 1828 | |
| 1829 | LogsDB::~LogsDB() { |
| 1830 | delete _impl; |
nothing calls this directly
no outgoing calls
no test coverage detected