view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1217:c04d0aa40f73 broker

removed debug code
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 05 Dec 2019 18:34:56 +0100
parents 5055031f4a06
children
line wrap: on
line source

mergeInto(LibraryManager.library, {
  WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
    setTimeout(function() {
      window.WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
    }, timeoutInMs);
  }
});