All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
WebRequestServiceBackendRunner.h
1 // Copyright eeGeo Ltd (2012-2015), All Rights Reserved
2 
3 #pragma once
4 
5 #include "Types.h"
6 #include "IRunnable.h"
7 #include "Web.h"
8 #include "BidirectionalWebIOBus.h"
9 #include "WebIOConfig.h"
10 
11 namespace Eegeo
12 {
13  namespace Web
14  {
16  {
17  public:
19  TMessageBus& webMessageBus);
20 
21  bool operator()();
22  void OnStarted();
23  void OnStopped();
24 
25  private:
26  const WebIOConfig m_webIOConfig;
27  TMessageBus& m_webMessageBus;
28 
29  WebRequestServiceBackend* m_pWebRequestServiceBackend;
30  };
31  }
32 }