view Platforms/Wasm/WasmDelayedCallExecutor.h @ 535:79bb0a02d1cc bgo-commands-codegen

- Added ORTHANC_OVERRIDE to several methods (translates to "override" in C++ 11 compilers) - Last fixes to new style command handling (removed useless commands and switch command handling in simple samples to use XxxxSerializedMessageXxxx instead of XxxxCommandXxxx - Fixed hardcoded input instance in SingleFrameEditorApplication
author Benjamin Golinvaux <bgo@osimis.io>
date Tue, 19 Mar 2019 09:13:57 +0100
parents 26b90b110719
children 4f2416d519b4
line wrap: on
line source

#pragma once

#include <Framework/Toolbox/IDelayedCallExecutor.h>
#include <Core/OrthancException.h>

namespace OrthancStone
{
  class WasmDelayedCallExecutor : public IDelayedCallExecutor
  {
  private:
    static MessageBroker* broker_;

    // Private constructor => Singleton design pattern
    WasmDelayedCallExecutor(MessageBroker& broker) :
      IDelayedCallExecutor(broker)
    {
    }

  public:
    static WasmDelayedCallExecutor& GetInstance()
    {
      if (broker_ == NULL)
      {
        printf("WasmDelayedCallExecutor::GetInstance(): broker not initialized\n");
        throw Orthanc::OrthancException(Orthanc::ErrorCode_BadSequenceOfCalls);
      }
      static WasmDelayedCallExecutor instance(*broker_);
      return instance;
    }

    static void SetBroker(MessageBroker& broker)
    {
      broker_ = &broker;
    }

    virtual void Schedule(MessageHandler<IDelayedCallExecutor::TimeoutMessage>* callback,
                         unsigned int timeoutInMs = 1000);

  };
}