aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/qps_tagger.cpp
blob: 18baead998bf2bd9945f82fab903585d6377cce4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#include "qps_tagger.h"

namespace vbench {

QpsTagger::QpsTagger(double qps, Handler<Request> &next)
    : _invQps(1.0/qps),
      _count(0),
      _next(next)
{
}

void
QpsTagger::handle(Request::UP request)
{
    request->scheduledTime(((double)(_count++)) * _invQps);
    _next.handle(std::move(request));
}

} // namespace vbench