| 247 | } |
| 248 | |
| 249 | void |
| 250 | utils::internal::invokePluginForEvent(TransactionPlugin *plugin, TSHttpTxn ats_txn_handle, TSEvent event) |
| 251 | { |
| 252 | std::lock_guard<Mutex> scopedLock(*(plugin->getMutex())); |
| 253 | ::invokePluginForEvent(static_cast<Plugin *>(plugin), ats_txn_handle, event); |
| 254 | } |
| 255 | |
| 256 | void |
| 257 | utils::internal::invokePluginForEvent(GlobalPlugin *plugin, TSHttpTxn ats_txn_handle, TSEvent event) |
nothing calls this directly
no test coverage detected