-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatistics.h
48 lines (32 loc) · 953 Bytes
/
Statistics.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
46
47
48
//
// Created by devi on 1/5/20.
//
#ifndef REDISGRAPHCLINET_STATISTICS_H
#define REDISGRAPHCLINET_STATISTICS_H
#include <string>
#include <utility>
class Statistics {
public:
enum Labels{
LABELS_ADDED,
INDICES_ADDED,
INDICES_DELETED,
NODES_CREATED,
NODES_DELETED,
RELATIONSHIPS_DELETED,
PROPERTIES_SET,
RELATIONSHIPS_CREATED,
QUERY_INTERNAL_EXECUTION_TIME,
};
virtual std::string getStringValue(Labels label) = 0;
Labels getLabel(std::string text);
virtual int nodesCreated() = 0;
virtual int nodesDeleted() = 0;;
virtual int indicesAdded() = 0;;
virtual int indicesDeleted() = 0;;
virtual int labelsAdded() = 0;;
virtual int relationshipsDeleted() = 0;;
virtual int relationshipsCreated() = 0;;
virtual int propertiesSet() = 0;;
};
#endif //REDISGRAPHCLINET_STATISTICS_H