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
Is your feature request related to a problem? Please describe.
I want to keep session consistency up to date when using transactional batch.
Describe the solution you'd like
I'd like the transactional batch operation to accept a session token (perhaps via an options construct similar to other operations) and then return an updated session token in its response.
Describe alternatives you've considered
If one really need to ensure that session consistency is up to date after executing a transactional batch operation the only option I've come up with is to:
Execute the batch
Capture one of the new item's ETag and Timestamp
Query container with current session token repeatedly until the new ETag is visible or a greater Timestamp is observed
In most cases this will incur a single extra round trip but could potentially require many extra round trips.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
I want to keep session consistency up to date when using transactional batch.
Describe the solution you'd like
I'd like the transactional batch operation to accept a session token (perhaps via an options construct similar to other operations) and then return an updated session token in its response.
Describe alternatives you've considered
If one really need to ensure that session consistency is up to date after executing a transactional batch operation the only option I've come up with is to:
In most cases this will incur a single extra round trip but could potentially require many extra round trips.
The text was updated successfully, but these errors were encountered: