view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1021:2f22e3086a5b

Added tag toa2019093001 for changeset ac88989817e3
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 30 Sep 2019 10:41:37 +0200
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);
  }
});