comparison OrthancServer/ServerContext.h @ 2616:2f3007bf0708 jobs

event queues in Lua, serialization of sequence of operations
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 22 May 2018 12:25:37 +0200
parents 6f9225dcfc32
children 912a767911b0
comparison
equal deleted inserted replaced
2614:3200223f9ade 2616:2f3007bf0708
117 DicomCacheProvider provider_; 117 DicomCacheProvider provider_;
118 boost::mutex dicomCacheMutex_; 118 boost::mutex dicomCacheMutex_;
119 MemoryCache dicomCache_; 119 MemoryCache dicomCache_;
120 JobsEngine jobsEngine_; 120 JobsEngine jobsEngine_;
121 121
122 LuaScripting lua_; 122 LuaScripting luaEventHandler_;
123 123
124 #if ORTHANC_ENABLE_PLUGINS == 1 124 #if ORTHANC_ENABLE_PLUGINS == 1
125 OrthancPlugins* plugins_; 125 OrthancPlugins* plugins_;
126 #endif 126 #endif
127 127
255 const std::string& GetDefaultLocalApplicationEntityTitle() const 255 const std::string& GetDefaultLocalApplicationEntityTitle() const
256 { 256 {
257 return defaultLocalAet_; 257 return defaultLocalAet_;
258 } 258 }
259 259
260 LuaScripting& GetLuaScripting() 260 LuaScripting& GetLuaEventHandler()
261 { 261 {
262 return lua_; 262 return luaEventHandler_;
263 } 263 }
264 264
265 OrthancHttpHandler& GetHttpHandler() 265 OrthancHttpHandler& GetHttpHandler()
266 { 266 {
267 return httpHandler_; 267 return httpHandler_;