view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1143:e2212644eab3

Added tag toa2019110801 for changeset 76705b430c78
author Benjamin Golinvaux <bgo@osimis.io>
date Fri, 08 Nov 2019 14:39:00 +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);
  }
});