view Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js @ 1423:6c3f260c4de7

tentative to fix CI build
author Alain Mazy <alain@mazy.be>
date Thu, 14 May 2020 07:55:28 +0200
parents 419d0320c344
children
line wrap: on
line source

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