comparison OrthancServer/ServerJobs/StoreScuOperation.cpp @ 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 f7a84b551ee4
children
comparison
equal deleted inserted replaced
2614:3200223f9ade 2616:2f3007bf0708
77 << modality_.GetApplicationEntityTitle() << "\": " << e.What(); 77 << modality_.GetApplicationEntityTitle() << "\": " << e.What();
78 } 78 }
79 79
80 outputs.Append(input.Clone()); 80 outputs.Append(input.Clone());
81 } 81 }
82
83
84 void StoreScuOperation::Serialize(Json::Value& result) const
85 {
86 result["Type"] = "StoreScu";
87 result["LocalAET"] = localAet_;
88 modality_.ToJson(result["Modality"]);
89 }
82 } 90 }