view Platforms/Wasm/WasmDelayedCallExecutor.js @ 1016:78a516d5ead5

making DicomInstanceParameters::ConvertToFloat() public
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 24 Sep 2019 18:07:25 +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);
  }
});