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
This issue introduces two new settings for controlling the polling behavior in the fetchff plugin:
refreshWhenHidden: Controls whether polling continues when the window or tab is hidden (i.e., the user switches to another tab or minimizes the window).
Default: false (polling will pause when the window is hidden) Use case: Enables the user to specify whether the polling should continue when the page is not visible. This is useful in scenarios where background data fetching is necessary.
refreshWhenOffline: Determines whether polling should continue when the browser detects that it's offline using navigator.onLine.
Default: false (polling will pause when the browser is offline) Use case: Useful for cases where the user wants to control polling behavior during connectivity issues. This setting allows the user to stop or continue polling while the browser is offline.
The text was updated successfully, but these errors were encountered:
This issue introduces two new settings for controlling the polling behavior in the fetchff plugin:
Default: false (polling will pause when the window is hidden)
Use case: Enables the user to specify whether the polling should continue when the page is not visible. This is useful in scenarios where background data fetching is necessary.
Default: false (polling will pause when the browser is offline)
Use case: Useful for cases where the user wants to control polling behavior during connectivity issues. This setting allows the user to stop or continue polling while the browser is offline.
The text was updated successfully, but these errors were encountered: