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 11ef604 commit 45da68fCopy full SHA for 45da68f
packages/powersync_core/lib/src/streaming_sync.dart
@@ -136,7 +136,7 @@ class StreamingSyncImplementation implements StreamingSync {
136
try {
137
_abort = AbortController();
138
clientId = await adapter.getClientId();
139
- crudLoop();
+ _crudLoop();
140
var invalidCredentials = false;
141
while (!aborted) {
142
_updateStatus(connecting: true);
@@ -177,7 +177,7 @@ class StreamingSyncImplementation implements StreamingSync {
177
}
178
179
180
- Future<void> crudLoop() async {
+ Future<void> _crudLoop() async {
181
await _uploadAllCrud();
182
183
// Trigger a CRUD upload whenever the upstream trigger fires
0 commit comments