Gareth Tomlinson

Results 8 comments of Gareth Tomlinson

I'd have to double check but I would think this is due to the under lying realm database having a fixed name and hence file store. A second queue would...

Note, realm only supports Node 8 & Node 10 right now. Switching to node 10 for my project fixed an install issue on iOS.

Further to this, if using pods on iOS, running "yarn install" or "yarn add" breaks the pod install for realm. You need to clear out the pod cache and reinstall...

You can impliment this outside of the library. Add a NetInfo listener and start / stop the queue on network state change. ` NetInfo.addEventListener(state => { if (state.isInternetReachable) { logger.log('Network...

Just in case it helps you, I've created a pr for this: [#63](https://github.com/billmalarky/react-native-queue/pull/63) . Fork [here](https://github.com/gruffT/react-native-queue/tree/retrydelay?files=1).

That's correct. Pass in the job options via createJob alongside timeout, priority etc.. Set parameter retryDelay to the required delay in ms. Good luck On Sat, 15 Feb 2020, 15:28...

@Arshazar I found a work around by re-transpiling from source in my project. Hope this helps you.

I can confirm we saw a significant volume of these messages stop with migration to `1.14.4`. Thank you!