diff 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
line wrap: on
line diff
--- a/OrthancServer/ServerContext.h	Mon May 21 09:00:20 2018 +0200
+++ b/OrthancServer/ServerContext.h	Tue May 22 12:25:37 2018 +0200
@@ -119,7 +119,7 @@
     MemoryCache dicomCache_;
     JobsEngine jobsEngine_;
 
-    LuaScripting lua_;
+    LuaScripting luaEventHandler_;
 
 #if ORTHANC_ENABLE_PLUGINS == 1
     OrthancPlugins* plugins_;
@@ -257,9 +257,9 @@
       return defaultLocalAet_;
     }
 
-    LuaScripting& GetLuaScripting()
+    LuaScripting& GetLuaEventHandler()
     {
-      return lua_;
+      return luaEventHandler_;
     }
 
     OrthancHttpHandler& GetHttpHandler()