view Platforms/Wasm/WasmDelayedCallExecutor.js @ 980:8e497a4e3d96

DicomInstanceParameters::GetIndexInSeries()
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 03 Sep 2019 19:03: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);
  }
});