aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/ignore_before.h
blob: 52d9c21838482d7f66430acea31c31cdb7e6446d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.

#pragma once

#include "request.h"
#include "analyzer.h"
#include <vbench/core/handler.h>

namespace vbench {

/**
 * Component ignoring (discarding) requests that have start times
 * before a specific time.
 **/
class IgnoreBefore : public Analyzer
{
private:
    Handler<Request> &_next;
    double            _time;
    size_t            _ignored;

public:
    IgnoreBefore(double time, Handler<Request> &next);
    void handle(Request::UP request) override;
    void report() override;
};

} // namespace vbench