summaryrefslogblamecommitdiffstats
path: root/src/OSSupport/NetworkLookup.cpp
blob: 8a0e54015d9322a148ae2069ad9e9182ab1ca40f (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                                             
                                            
















































                                                                             

// NetworkLookup.cpp

// Implements the cNetworkLookup class representing an executor for asynchronous lookup tasks


#include "Globals.h"
#include "NetworkLookup.h"




cNetworkLookup::cNetworkLookup() :
	cIsThread("Network Lookup Executor")
{
}





cNetworkLookup::~cNetworkLookup()
{
	Stop();
}





void cNetworkLookup::ScheduleLookup(std::function<void()> a_Lookup)
{
	m_WorkQueue.EnqueueItem(std::move(a_Lookup));
}





void cNetworkLookup::Stop()
{
	m_ShouldTerminate = true;
	m_WorkQueue.Clear();
	m_WorkQueue.EnqueueItem([](){});  // Dummy work to wake up the thread
	cIsThread::Stop();
}





void cNetworkLookup::Execute()
{
	while (!m_ShouldTerminate)
	{
		// Execute the next task in the queue
		auto Work = m_WorkQueue.DequeueItem();
		Work();
	}
}