view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1078:53d9c3b96b9e broker

unused method
author Sebastien Jodogne <s.jodogne@gmail.com>
date Thu, 17 Oct 2019 18:36:52 +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);
  }
});