Created
July 25, 2014 15:37
-
-
Save matthewrobb/b820bd60b5c7be6f57c7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(global){ | |
"use strict"; | |
function fnToBlob(fn) { | |
var body = (fn && fn.toString()) || ""; | |
return new Blob([ body.slice(body.indexOf("{") + 1, body.length - 1) ]); | |
} | |
function createWorker(fn) { | |
var blobURL = global.URL.createObjectURL(fnToBlob(fn)), | |
worker = new Worker(blobURL), | |
listeners, wrapper; | |
worker.onmessage = function() { | |
var list = listeners, | |
len = list && list.length || 0, | |
idx = 0; | |
for(var fn; idx < len && (fn = list[idx]); idx++) { | |
fn.apply(wrapper, arguments); | |
} | |
}; | |
return (wrapper = { | |
addListener: function(fn) { | |
~(listeners || (listeners = [])).indexOf(fn) || listeners.push(fn); | |
return fn; | |
}, | |
removeListener: function(fn) { | |
var idx = listeners && listeners.indexOf(fn); | |
listsners && ~idx && listeners.splice(idx, 1); | |
return fn; | |
}, | |
send: function() { | |
worker && worker.postMessage.apply(worker, arguments); | |
}, | |
release: function() { | |
worker = listeners = wrapper = null; | |
global.URL.revokeObjectURL(blobURL); | |
}, | |
}); | |
} | |
global.createWorker = createWorker; | |
}).call(this, this); | |
var worker = createWorker(function() { | |
onmessage = function() { | |
postMessage("IM A WORKER"); | |
} | |
}); | |
worker.addListener(function(e) { | |
console.log("A message from a worker: " + e.data); | |
}); | |
worker.send("Sup"); | |
// MAKE SURE TO DO THIS WHEN FINISHED WITH A WORKER! | |
// worker.release(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment