(String home, Config zezeConfig)
| 45 | private final ArrayList<Manager> managers = new ArrayList<>(); |
| 46 | |
| 47 | public Master(String home, Config zezeConfig) throws RocksDBException { |
| 48 | this.home = home; |
| 49 | this.zezeConfig = zezeConfig; |
| 50 | masterDb = new RocksDatabase(Path.of(home, MasterDbName).toString(), |
| 51 | RocksDatabase.DbType.eOptimisticTransactionDb); |
| 52 | mqTable = masterDb.getOrAddTable("mq"); |
| 53 | } |
| 54 | |
| 55 | public void close() { |
| 56 | masterDb.close(); |
nothing calls this directly
no test coverage detected