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:
Arne Welzel 2025-04-24 08:59:54 +02:00
parent 63d31d7d9f
commit 85a2694cb2
2 changed files with 0 additions and 11 deletions

View file

@ -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) ) {

View file

@ -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