-
-
Save bemson/57dffb89ee7b28d63a29 to your computer and use it in GitHub Desktop.
IndexedDB with Web Worker Blobs
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
<html> | |
<body> | |
<span id="output"></span> | |
</body> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> | |
<script src="main.js"></script> | |
</html> |
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
var | |
workerBlob = new Blob( | |
[workerRunner.toString().replace(/^function .+\{?|\}$/g, '')], | |
{ type:'text/javascript' } | |
), | |
workerBlobUrl = URL.createObjectURL(workerBlob), | |
worker = new Worker(workerBlobUrl); | |
worker.onmessage = function(event) { | |
$('#output').text('Output is: ' + event.data); | |
}; | |
worker.postMessage('foo'); | |
function workerRunner() { | |
self.onmessage = function(event) { | |
self.postMessage('launched worker...'); | |
var req = indexedDB.open('mydb', 1); | |
req.onupgradeneeded = function (e) { | |
self.postMessage('successfully upgraded db'); | |
}; | |
req.onsuccess = function (e) { | |
self.postMessage('successfully opened db'); | |
}; | |
req.onerror = function(e) { | |
self.postMessage('error'); | |
}; | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Looks like I can't test workers via gist. IE complains about Blob-workers, and then attempts to use a relative gist url also fail. More investigation needed... Thankfully, the parent of this gist clearly works.