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 have network requests that are currently performed in web workers. I'd like to know if there's a way to use this plugin for those requests.
Describe the solution you'd like
I'd like a way to use this plugin's API via a web worker.
Describe alternatives you've considered
Right now the alternative is to perform the requests from the main thread using this plugin, then funnel the results into the web worker when the request resolves.
The text was updated successfully, but these errors were encountered:
Hi @CodeWithOz, unfortunately this plugin can't be used directly in a web worker. The reason is that the cordova bridge is not available in the web worker (e.g. check this link). But I'd love to implement this feature if the cordova team decided to support web workers. Maybe you can open an issue there?
Is your feature request related to a problem? Please describe.
I have network requests that are currently performed in web workers. I'd like to know if there's a way to use this plugin for those requests.
Describe the solution you'd like
I'd like a way to use this plugin's API via a web worker.
Describe alternatives you've considered
Right now the alternative is to perform the requests from the main thread using this plugin, then funnel the results into the web worker when the request resolves.
The text was updated successfully, but these errors were encountered: