comparison Resources/Graveyard/Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js @ 1503:553084468225

moving /Deprecated/ to /Resources/Graveyard/Deprecated/
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 30 Jun 2020 11:38:13 +0200
parents Deprecated/Platforms/Wasm/WasmDelayedCallExecutor.js@419d0320c344
children
comparison
equal deleted inserted replaced
1502:e5729dab3f67 1503:553084468225
1 mergeInto(LibraryManager.library, {
2 WasmDelayedCallExecutor_Schedule: function(callable, timeoutInMs/*, payload*/) {
3 setTimeout(function() {
4 window.WasmDelayedCallExecutor_ExecuteCallback(callable/*, payload*/);
5 }, timeoutInMs);
6 }
7 });