comparison Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js @ 1400:419d0320c344

moved Platforms into Deprecated
author Alain Mazy <alain@mazy.be>
date Wed, 29 Apr 2020 20:45:14 +0200
parents Platforms/Wasm/WasmDelayedCallExecutor.js@5055031f4a06
children
comparison
equal deleted inserted replaced
1399:ff8d2e46ac63 1400:419d0320c344
1 mergeInto(LibraryManager.library, {
2 WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
3 setTimeout(function() {
4 window.WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
5 }, timeoutInMs);
6 }
7 });