Module Js_of_ocaml.Worker
Low-level bindgins to javascript Web Workers.
See the documented Javascript API and some more general documentation about the usage of WebWorker.
class type ['a, 'b] worker = object ... endclass type errorEvent = object ... endclass type 'a messageEvent = object ... endGlobal function to be used by the worker.
val import_scripts : string list -> unitval set_onmessage : ('a -> unit) -> unitval post_message : 'a -> unit