BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
BasicDistributor.h
1 #pragma once
2 
3 #include <Poco/Mutex.h>
4 
5 #include "core/AbstractDistributor.h"
6 
7 namespace BeeeOn {
8 
9 class SensorData;
10 
12 public:
13  /*
14  * Export data to all registered exporters.
15  */
16  void exportData(const SensorData &sensorData) override;
17 private:
18  Poco::FastMutex m_exportMutex;
19 };
20 
21 }
Definition: SensorData.h:20
Definition: AbstractDistributor.h:17
Definition: BasicDistributor.h:11