| 30 | namespace phxbinlog { |
| 31 | |
| 32 | EventMonitor::EventMonitor(const Option *option) { |
| 33 | option_ = option; |
| 34 | storage_manager_ = StorageManager::GetGlobalStorageManager(option); |
| 35 | master_manager_ = MasterManager::GetGlobalMasterManager(option); |
| 36 | stop_ = false; |
| 37 | |
| 38 | Run(); |
| 39 | } |
| 40 | |
| 41 | EventMonitor::~EventMonitor() { |
| 42 | stop_ = true; |
nothing calls this directly
no outgoing calls
no test coverage detected