view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1368:33da5d02885f broker

SdlSimpleViewer rename
author Benjamin Golinvaux <bgo@osimis.io>
date Sat, 18 Apr 2020 14:45:22 +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);
  }
});