[Feature] Poll request #89
luisaveiro
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Summary
The simplest way to get new information from the server is periodic polling. The application makes regular requests to the server, for example, once every 10 seconds. Polling is the simplest way of having a persistent connection with the server, that doesn’t use any specific protocol like WebSocket or Server-Sent Events.
A use case for polling would be OAuth 2.0 Device Authorization Grant (also known as Device Flow).
Possible implementation
The HTTP Client provides a
poll
method that specifies the maximum number of time to send the request, the interval in milliseconds between requests, and an optional callback function to determine whether the client polling should be stopped based on the response, the request and the error instance.Method signature
Code examples
The HTTP Client will poll for 5 seconds, every second the request will be made. The callback will return true for the HTTP Client to continue polling if the response has a status of pending.
Beta Was this translation helpful? Give feedback.
All reactions