blob: 81ae6534c22ea2da5b432cd2dd9fc7a53c0d29da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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
|