summaryrefslogblamecommitdiffstats
path: root/src/OSSupport/NetworkLookup.h
blob: 41621994783b3cf1e1f179ad4a1c484b4817d15e (plain) (tree)





















                                                                                           
                                           


















                                                                         

// NetworkLookup.h

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

#pragma once

#include <functional>

#include "IsThread.h"
#include "Queue.h"





class cNetworkLookup :
	public cIsThread
{
public:

	cNetworkLookup();
	virtual ~cNetworkLookup() override;

	/** Schedule a lookup task for execution. */
	void ScheduleLookup(std::function<void()> a_Lookup);

	/** Cancels any scheduled lookups and joins the lookup thread. */
	void Stop();

protected:

	/** Process the queue until the thread is stopped. */
	virtual void Execute() override final;

private:

	/** The queue of lookup tasks waiting to be executed. */
	cQueue<std::function<void()>> m_WorkQueue;
};