Skip to content

Commit b2fcfe9

Browse files
feat: function to header files
1 parent ccc97db commit b2fcfe9

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

include/countly.hpp

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,11 @@ class Countly : public cly::CountlyDelegates {
105105
*/
106106
int checkEQSize();
107107

108+
/*
109+
* Checks and returns the size of the request queue in memory or persistent storage.
110+
*/
111+
int checkRQSize();
112+
108113
/**
109114
* Checks and returns the size of the event queue in persistent storage.
110115
*/

include/countly/request_module.hpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ class RequestModule {
3535
*/
3636
void clearRequestQueue();
3737

38+
long long RQSize();
39+
3840
private:
3941
class RequestModuleImpl;
4042
std::unique_ptr<RequestModuleImpl> impl;

0 commit comments

Comments
 (0)