mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
cluster/ThreadedBackend: Remove Process()
This must have been left-over from before OnLoopProcess existed. It wasn't called or used anymore.
This commit is contained in:
parent
63d31d7d9f
commit
85a2694cb2
2 changed files with 0 additions and 11 deletions
|
@ -213,11 +213,6 @@ void ThreadedBackend::QueueForProcessing(QueueMessage&& qmessages) {
|
|||
onloop->QueueForProcessing(std::move(qmessages));
|
||||
}
|
||||
|
||||
void ThreadedBackend::Process() {
|
||||
if ( onloop )
|
||||
onloop->Process();
|
||||
}
|
||||
|
||||
void ThreadedBackend::Process(QueueMessage&& msg) {
|
||||
// sonarlint wants to use std::visit. not sure...
|
||||
if ( auto* emsg = std::get_if<EventMessage>(&msg) ) {
|
||||
|
|
|
@ -570,12 +570,6 @@ protected:
|
|||
*/
|
||||
void QueueForProcessing(QueueMessage&& messages);
|
||||
|
||||
/**
|
||||
* Delegate to onloop->Process() to trigger processing
|
||||
* of outstanding queued messages explicitly, if any.
|
||||
*/
|
||||
void Process();
|
||||
|
||||
/**
|
||||
* The default DoInit() implementation of ThreadedBackend
|
||||
* registers itself as a counting IO source to keep the IO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue