We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using the proposed /api/cancel endpoint, make all API calls cancellable. see https://github.com/Linkurious/linkurious-server/issues/779
/api/cancel
Add a cancellable boolean option to all option object of all requests When options.cancellable is true:
cancellable
options.cancellable
cancellationToken
.then(onResolve, onFailure, onCancel)
/api/cancel endoint
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Using the proposed
/api/cancel
endpoint, make all API calls cancellable.see https://github.com/Linkurious/linkurious-server/issues/779
How
Add a
cancellable
boolean option to all option object of all requestsWhen
options.cancellable
is true:cancellationToken
and add it to the request parameters.then(onResolve, onFailure, onCancel)
)cancellationToken
to cancel the server-side query using the/api/cancel endoint
The text was updated successfully, but these errors were encountered: