BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
GWSPriorityAssigner.h
1 #pragma once
2 
3 #include <Poco/SharedPtr.h>
4 
5 #include "gwmessage/GWMessage.h"
6 
7 namespace BeeeOn {
8 
18 public:
19  typedef Poco::SharedPtr<GWSPriorityAssigner> Ptr;
20 
21  virtual ~GWSPriorityAssigner();
22 
26  virtual size_t assignPriority(const GWMessage::Ptr message) = 0;
27 };
28 
29 }
virtual size_t assignPriority(const GWMessage::Ptr message)=0
Implementation of GWSPriorityAssigner interface provides a method for assigning of sending priority t...
Definition: GWSPriorityAssigner.h:17