├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── binding.gyp ├── index.js ├── lib └── queue.js ├── package.json ├── spec ├── queueSpec.js └── support │ └── jasmine.json └── src ├── functions.cc ├── functions.h └── msg.cc /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/README.md -------------------------------------------------------------------------------- /binding.gyp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/binding.gyp -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/queue'); 2 | -------------------------------------------------------------------------------- /lib/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/lib/queue.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/package.json -------------------------------------------------------------------------------- /spec/queueSpec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/spec/queueSpec.js -------------------------------------------------------------------------------- /spec/support/jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/spec/support/jasmine.json -------------------------------------------------------------------------------- /src/functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/src/functions.cc -------------------------------------------------------------------------------- /src/functions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/src/functions.h -------------------------------------------------------------------------------- /src/msg.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhead/node-svmq/HEAD/src/msg.cc --------------------------------------------------------------------------------