-
Hi @Mimetis, Is there a way to tell if a client database has changes pending? Warm Regards |
Beta Was this translation helpful? Give feedback.
Answered by
Mimetis
Jul 29, 2021
Replies: 1 comment
-
You can use two self explained methods, I guess: // This first method will returns a client batch info object (depending on your setting BatchSize)
localOrchestrator.GetChangesAsync();
// This method is faster and will return only the estimated count of changes to send
localOrchestrator.GetEstimatedChangesCountAsync(); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Mimetis
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use two self explained methods, I guess: