aboutsummaryrefslogtreecommitdiff
path: root/src/strategies/anti_lag/queue_strategy.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/strategies/anti_lag/queue_strategy.hh')
-rw-r--r--src/strategies/anti_lag/queue_strategy.hh18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/strategies/anti_lag/queue_strategy.hh b/src/strategies/anti_lag/queue_strategy.hh
new file mode 100644
index 0000000..81ae653
--- /dev/null
+++ b/src/strategies/anti_lag/queue_strategy.hh
@@ -0,0 +1,18 @@
+#ifndef STRATEGIES_ANTI_LAG_QUEUE_STRATEGY_HH_
+#define STRATEGIES_ANTI_LAG_QUEUE_STRATEGY_HH_
+
+#include "strategies/queue_strategy.hh"
+
+namespace low_latency {
+
+class QueueContext;
+
+class AntiLagQueueStrategy final : public QueueStrategy {
+ public:
+ AntiLagQueueStrategy(QueueContext& queue);
+ virtual ~AntiLagQueueStrategy();
+};
+
+} // namespace low_latency
+
+#endif