Placeholder method for cleaning up after processing a sync message batch

pull/14/head
Sam Bosley 12 years ago
parent 99357842bb
commit 184972f246

@ -150,6 +150,7 @@ public class ActFmSyncThread {
} }
} }
} }
replayOutstandingChanges();
} }
batchSize = Math.min(batchSize, messageBatch.size()) * 2; batchSize = Math.min(batchSize, messageBatch.size()) * 2;
@ -168,6 +169,13 @@ public class ActFmSyncThread {
} }
// Reapplies changes still in the outstanding tables to the local database
// Called after a batch has finished processing
private void replayOutstandingChanges() {
// TODO: Replay existing outstanding changes
}
private boolean timeForBackgroundSync() { private boolean timeForBackgroundSync() {
return true; return true;
} }

Loading…
Cancel
Save