view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1265:80cec1eaf5f1

Added tag toa2020012703 for changeset 5e45322c7724
author Benjamin Golinvaux <bgo@osimis.io>
date Mon, 27 Jan 2020 15:23:54 +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);
  }
});