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
Then, because this package has a depedency on [Realm](https://github.com/realm/realm-js) you will need to link this native package by running:
66
-
67
-
```bash
68
-
$ react-native link realm
69
-
```
70
-
71
-
Linking realm **should only be done once**, reinstalling node_modules with npm or yarn does not require running the above command again.
72
-
73
-
To troubleshoot linking, refer to [the realm installation instructions](https://realm.io/docs/javascript/latest/#getting-started).
74
-
75
65
## Basic Usage
76
66
77
67
React Native Queue is a standard job/task queue built specifically for react native applications. If you have a long-running task, or a large number of tasks, consider turning that task into a job(s) and throwing it/them onto the queue to be processed in the background instead of blocking your UI until task(s) complete.
@@ -84,7 +74,7 @@ Creating and processing jobs consists of:
84
74
4. Starting the queue (note this happens automatically on job creation, but sometimes the queue must be explicitly started such as in a OS background task or on app restart). Queue can be started with a lifespan in order to limit queue processing time.
0 commit comments