| 364 | |
| 365 | |
| 366 | ProfilerManager::ProfilerManager(thread_db* tdbb) |
| 367 | : activePlugins(*tdbb->getAttachment()->att_pool) |
| 368 | { |
| 369 | const auto attachment = tdbb->getAttachment(); |
| 370 | |
| 371 | flushTimer = FB_NEW TimerImpl(); |
| 372 | |
| 373 | flushTimer->setOnTimer([this, attachment](auto) { |
| 374 | FbLocalStatus statusVector; |
| 375 | EngineContextHolder innerTdbb(&statusVector, attachment->getInterface(), FB_FUNCTION); |
| 376 | |
| 377 | flush(false); |
| 378 | updateFlushTimer(false); |
| 379 | }); |
| 380 | } |
| 381 | |
| 382 | ProfilerManager::~ProfilerManager() |
| 383 | { |
nothing calls this directly
no test coverage detected