Skip to content
Snippets Groups Projects
Commit c8ac0f69 authored by Carsten Patzke's avatar Carsten Patzke
Browse files

Monitoring: Made ReceiverMonitoringClientImpl also explicitly not copyable

parent f169e60e
Branches
Tags
No related merge requests found
......@@ -16,7 +16,6 @@ public:
static uint64_t HelperTimeDiffInMicroseconds(std::chrono::high_resolution_clock::time_point startTime);
ReceiverMonitoringClient(const ReceiverMonitoringClient&) = delete;
ReceiverMonitoringClient& operator=(const ReceiverMonitoringClient&) = delete;
virtual void SendProducerToReceiverTransferDataPoint(const std::string& pipelineStepId,
......
......@@ -41,6 +41,8 @@ public:
mutable bool sendingThreadRunning__ = false;
explicit ReceiverMonitoringClientImpl(const SharedCache& cache);
ReceiverMonitoringClientImpl(const ReceiverMonitoringClientImpl&) = delete;
ReceiverMonitoringClientImpl& operator=(const ReceiverMonitoringClientImpl&) = delete;
void StartSendingThread();
void StopSendingThread();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment