UNPKG

ember-app-scheduler

Version:

Ember addon to schedule work at different phases of app life cycle.

14 lines (11 loc) 258 B
// a worker which does initialization asynchronously var workerpool = require('../../index'); function add(a, b) { return a + b; } setTimeout(function() { // create a worker and register some functions workerpool.worker({ add: add }); }, 500);