Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_android_sdk_maven_plugin
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
Panagiotis Triantafyllou
2025-03-31 16:00:45 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ac318b53767774d176c327dd2bbf49eea259a29d
ac318b53
1 parent
c1184ac2
minor db change
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
warply_android_sdk/src/main/java/ly/warp/sdk/db/WarplyDBHelper.java
warply_android_sdk/src/main/java/ly/warp/sdk/db/WarplyDBHelper.java
View file @
ac318b5
...
...
@@ -388,15 +388,15 @@ public class WarplyDBHelper extends SQLiteOpenHelper {
}
public
synchronized
long
getRequestsInQueueCount
()
{
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
atabase
(
KEY_CIPHER
),
TABLE_REQUESTS
);
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
b
(
),
TABLE_REQUESTS
);
}
public
synchronized
long
getPushRequestsInQueueCount
()
{
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
atabase
(
KEY_CIPHER
),
TABLE_PUSH_REQUESTS
);
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
b
(
),
TABLE_PUSH_REQUESTS
);
}
public
synchronized
long
getPushAckRequestsInQueueCount
()
{
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
atabase
(
KEY_CIPHER
),
TABLE_PUSH_ACK_REQUESTS
);
return
DatabaseUtils
.
queryNumEntries
(
getReadableD
b
(
),
TABLE_PUSH_ACK_REQUESTS
);
}
public
synchronized
void
deleteRequests
(
Long
...
ids
)
{
...
...
Please
register
or
login
to post a comment