You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The same initialized worker can be used many times with different input.
61
70
62
71
##Requirements
72
+
63
73
The browser running the angular service needs to support the following:
64
74
*[Web Workers](http://caniuse.com/#feat=webworkers) (angular-workers does not use shared workers)
65
75
*[Blob URLs](http://caniuse.com/#feat=bloburls), specifically [creating blobs from strings](https://developer.mozilla.org/en-US/docs/Web/API/URL.createObjectURL#Browser_compatibility)
66
76
67
77
##Limitations
78
+
68
79
The angular-workers is a wrapper around standard web workers. So all limitations with web workers apply.
69
80
* Data sent between the worker and main thread is deep cloned. (angular-workers does not use transferable objects, yet)
70
81
This means transferring large object (about >20Mb, [Communicating Large Objects with Web Workers in javascript, Samuel Mendenhall](http://developerblog.redhat.com/2014/05/20/communicating-large-objects-with-web-workers-in-javascript/))
0 commit comments