aboutsummaryrefslogtreecommitdiffstats
path: root/vbench/src/vbench/vbench/request_sink.cpp
blob: bf686e30b3d32ef492c4d718bab3396401ad60c8 (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 Vespa.ai. 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