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
Sometimes it is useful to be able to provide a callback function when applying changes - especially if the input diff file contains many changes. The callback could do things like
report progress of the operation to the user
allow early cancellation if the client is impatient
on server side, yield to indicate that the worker is doing work (did not freeze and should not get killed)
Sometimes it is useful to be able to provide a callback function when applying changes - especially if the input diff file contains many changes. The callback could do things like
The callback could be something like this:
... and apply_changeset would call it every now and then (not necessarily after each statement it applies).
Should be also supported in python API.
The text was updated successfully, but these errors were encountered: