react-native-bg-thread icon indicating copy to clipboard operation
react-native-bg-thread copied to clipboard

react-native-bg-thread

Results 4 react-native-bg-thread issues
Sort by recently updated
recently updated
newest added

When trying this in the iOS Simulator it actually seems to work, the code inside RnBgTask.runInBackground actually runs, no idead what thread it runs in etc. But when trying the...

This package is no more than `InteractionManager.runAfterInteractions` - all callbacks still run on js-thread all other RN-logic runs on. For real multithreaded RN-code you need to start new js-thread (with...

Hi! Great library; I'm using it in my project and I see good results. I have an event listener inside `RnBgTask.runInBackground`, which gets cancelled on the componentWillUnmount method. However, it...

Just wondering, can I call my heavy native function from this background thread? I'm asking because in other libraries it was said that it's not allowed, or maybe allowed if...