├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE ├── Models ├── Queue.js └── Worker.js ├── README.md ├── config ├── Database.js └── config.js ├── docs ├── easy-os-background-tasks-in-react-native.md ├── easy-os-background-tasks-in-react-native.png └── logo.png ├── index.js ├── package.json ├── tests ├── Queue.test.js └── Worker.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /coverage -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /coverage 3 | /.idea 4 | /reactNativeQueue.realm* -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/LICENSE -------------------------------------------------------------------------------- /Models/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/Models/Queue.js -------------------------------------------------------------------------------- /Models/Worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/Models/Worker.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/README.md -------------------------------------------------------------------------------- /config/Database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/config/Database.js -------------------------------------------------------------------------------- /config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/config/config.js -------------------------------------------------------------------------------- /docs/easy-os-background-tasks-in-react-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/docs/easy-os-background-tasks-in-react-native.md -------------------------------------------------------------------------------- /docs/easy-os-background-tasks-in-react-native.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/docs/easy-os-background-tasks-in-react-native.png -------------------------------------------------------------------------------- /docs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/docs/logo.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/package.json -------------------------------------------------------------------------------- /tests/Queue.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/tests/Queue.test.js -------------------------------------------------------------------------------- /tests/Worker.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/tests/Worker.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/billmalarky/react-native-queue/HEAD/yarn.lock --------------------------------------------------------------------------------