comparison OrthancServer/ServerJobs/OrthancJobUnserializer.cpp @ 3851:6498739a3c3c

refactoring: TimeoutDicomConnectionManager is now only used by Lua
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 20 Apr 2020 16:46:44 +0200
parents 56f2397f027a
children 8f7ad4989fec
comparison
equal deleted inserted replaced
3850:d729d6e8b484 3851:6498739a3c3c
124 { 124 {
125 return new StorePeerOperation(source); 125 return new StorePeerOperation(source);
126 } 126 }
127 else if (type == "StoreScu") 127 else if (type == "StoreScu")
128 { 128 {
129 return new StoreScuOperation(source); 129 return new StoreScuOperation(
130 context_.GetLuaScripting().GetDicomConnectionManager(), source);
130 } 131 }
131 else if (type == "SystemCall") 132 else if (type == "SystemCall")
132 { 133 {
133 return new SystemCallOperation(source); 134 return new SystemCallOperation(source);
134 } 135 }