forked from RedisLabs/memtier_benchmark
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connections_manager.h
45 lines (37 loc) · 1.63 KB
/
connections_manager.h
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* Copyright (C) 2011-2017 Redis Labs Ltd.
*
* This file is part of memtier_benchmark.
*
* memtier_benchmark is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
*
* memtier_benchmark is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with memtier_benchmark. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MEMTIER_BENCHMARK_CLIENT_DATA_MANAGER_H
#define MEMTIER_BENCHMARK_CLIENT_DATA_MANAGER_H
class connections_manager {
public:
virtual unsigned long long get_reqs_processed(void) = 0;
virtual void inc_reqs_processed(void) = 0;
virtual unsigned long long get_reqs_generated(void) = 0;
virtual void inc_reqs_generated(void) = 0;
virtual bool finished(void) = 0;
virtual void set_start_time(void) = 0;
virtual void set_end_time(void) = 0;
virtual void handle_cluster_slots(protocol_response *r) = 0;
virtual void handle_response(unsigned int conn_id, struct timeval timestamp,
request *request, protocol_response *response) = 0;
virtual void create_request(struct timeval timestamp, unsigned int conn_id) = 0;
virtual bool hold_pipeline(unsigned int conn_id) = 0;
virtual int connect(void) = 0;
virtual void disconnect(void) = 0;
};
#endif //MEMTIER_BENCHMARK_CLIENT_DATA_MANAGER_H