view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1007:1c82598d4e68

Added tag toa2019092001 for changeset 4f28d9459e31
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 20 Sep 2019 12:13:28 +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);
  }
});