comparison OrthancServer/ServerJobs/DicomMoveScuJob.cpp @ 3658:2d90dd30858c storage-commitment

providing job ID to the IJob::Step() methods
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Feb 2020 16:44:26 +0100
parents 94f4a18a79cc
children 56f2397f027a
comparison
equal deleted inserted replaced
3657:115f82775c46 3658:2d90dd30858c
55 that_(that), 55 that_(that),
56 findAnswer_(findAnswer.Clone()) 56 findAnswer_(findAnswer.Clone())
57 { 57 {
58 } 58 }
59 59
60 virtual bool Execute() 60 virtual bool Execute(const std::string& jobId) ORTHANC_OVERRIDE
61 { 61 {
62 that_.Retrieve(*findAnswer_); 62 that_.Retrieve(*findAnswer_);
63 return true; 63 return true;
64 } 64 }
65 65