aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/request_sink.cpp
blob: f6046e1ae4e4520f008e23117130f02b383cc3c5 (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
// Copyright Yahoo. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.


#include "request_sink.h"

namespace vbench {

RequestSink::RequestSink()
{
}

void
RequestSink::handle(Request::UP request)
{
    request.reset();
}

void
RequestSink::report()
{
}

} // namespace vbench