BeeeOn Gateway  v2020.3.1-2-g6f737dc
Platform to interconnect the IoT world
GWSFixedPriorityAssigner.h
1 #pragma once
2 
3 #include "server/GWSPriorityAssigner.h"
4 
5 namespace BeeeOn {
6 
15 public:
16  size_t assignPriority(const GWMessage::Ptr message) override;
17 };
18 
19 }
size_t assignPriority(const GWMessage::Ptr message) override
Definition: GWSFixedPriorityAssigner.cpp:15
Implementation of GWSPriorityAssigner interface provides a method for assigning of sending priority t...
Definition: GWSPriorityAssigner.h:17
Assigns a hard-wired priority to each message as follows:
Definition: GWSFixedPriorityAssigner.h:14