aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/server.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-03-02 22:42:10 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-03-02 22:42:10 -0800
commit6af9ed0bf78a1fe6cbfe5e91d44d34da5b152f1b (patch)
treead56885a4385cdf4e6569b76f9e424c2a3928000 /test/cpp/qps/server.h
parent32083bd771449fee853f4f5cb56ecd768ffec16a (diff)
Rework QPS client/server
Now setup as a driver and N anonymous workers that may become clients or servers. Will convert async soon.
Diffstat (limited to 'test/cpp/qps/server.h')
-rw-r--r--test/cpp/qps/server.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cpp/qps/server.h b/test/cpp/qps/server.h
index 25c15e4d0c..35d1aed19f 100644
--- a/test/cpp/qps/server.h
+++ b/test/cpp/qps/server.h
@@ -42,6 +42,8 @@ namespace testing {
class Server {
public:
virtual ~Server() {}
+
+ virtual ServerStats Mark() = 0;
};
std::unique_ptr<Server> CreateSynchronousServer(const ServerConfig& config, int port);