comparison OrthancStone/Resources/Graveyard/Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js @ 1512:244ad1e4e76a

reorganization of folders
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 07 Jul 2020 16:21:02 +0200
parents Resources/Graveyard/Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js@553084468225
children
comparison
equal deleted inserted replaced
1511:9dfeee74c1e6 1512:244ad1e4e76a
1 mergeInto(LibraryManager.library, {
2 WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
3 setTimeout(function() {
4 window.WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
5 }, timeoutInMs);
6 }
7 });