view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1115:f00deb2b4733

Added tag toa2019110401 for changeset 33b0a762e98a
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 04 Nov 2019 15:11:44 +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);
  }
});