view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1283:6489610c8ee1 bugs/2020-02-invisible-slice

2019 to 2020
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 07 Feb 2020 13:50:57 +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);
  }
});