We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ccc97db commit b2fcfe9Copy full SHA for b2fcfe9
include/countly.hpp
@@ -105,6 +105,11 @@ class Countly : public cly::CountlyDelegates {
105
*/
106
int checkEQSize();
107
108
+ /*
109
+ * Checks and returns the size of the request queue in memory or persistent storage.
110
+ */
111
+ int checkRQSize();
112
+
113
/**
114
* Checks and returns the size of the event queue in persistent storage.
115
include/countly/request_module.hpp
@@ -35,6 +35,8 @@ class RequestModule {
35
36
void clearRequestQueue();
37
38
+ long long RQSize();
39
40
private:
41
class RequestModuleImpl;
42
std::unique_ptr<RequestModuleImpl> impl;
0 commit comments