Mercurial > hg > orthanc-stone
view Platforms/Wasm/WasmDelayedCallExecutor.cpp @ 920:5ca418d6579e refactor-viewport-controller
Close branch refactor-viewport-controller.
author | Alain Mazy <am@osimis.io> |
---|---|
date | Fri, 19 Jul 2019 14:15:49 +0000 |
parents | 26b90b110719 |
children | 4f2416d519b4 |
line wrap: on
line source
#include "WasmDelayedCallExecutor.h" #include "json/value.h" #include "json/writer.h" #include <emscripten/emscripten.h> #ifdef __cplusplus extern "C" { #endif extern void WasmDelayedCallExecutor_Schedule(void* callable, unsigned int timeoutInMs /*void* payload*/); void EMSCRIPTEN_KEEPALIVE WasmDelayedCallExecutor_ExecuteCallback(void* callable //void* payload ) { if (callable == NULL) { throw; } else { reinterpret_cast<OrthancStone::MessageHandler<OrthancStone::IDelayedCallExecutor::TimeoutMessage>*>(callable)-> Apply(OrthancStone::IDelayedCallExecutor::TimeoutMessage()); // uri, reinterpret_cast<Orthanc::IDynamicObject*>(payload))); } } #ifdef __cplusplus } #endif namespace OrthancStone { MessageBroker* WasmDelayedCallExecutor::broker_ = NULL; void WasmDelayedCallExecutor::Schedule(MessageHandler<IDelayedCallExecutor::TimeoutMessage>* callback, unsigned int timeoutInMs) { WasmDelayedCallExecutor_Schedule(callback, timeoutInMs); } }