view Platforms/Wasm/WasmDelayedCallExecutor.js @ 812:abc08ac721d3

small bit of doc
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 28 May 2019 18:31:17 +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);
  }
});