You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A new sync_token which we can use later on to do more incremental syncs.
These sync tokens returned by batching requests can be very helpful in keeping the sync state.
My suggestion here is to make the ITransaction.CommitAsync() return Task<string> that when completed returns the sync_token value, instead of just empty Task.
That change is expected not to have side effects since the Task<string> behaves exactly like a plain Task but with a result.
Thanks in advance for your time and for the great package 🙂
The text was updated successfully, but these errors were encountered:
As stated in the official documentation under Add two new tasks section:
These sync tokens returned by batching requests can be very helpful in keeping the sync state.
My suggestion here is to make the
ITransaction.CommitAsync()
returnTask<string>
that when completed returns the sync_token value, instead of just emptyTask
.That change is expected not to have side effects since the
Task<string>
behaves exactly like a plainTask
but with a result.Thanks in advance for your time and for the great package 🙂
The text was updated successfully, but these errors were encountered: