comparison Plugins/Engine/PluginsJob.h @ 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 5ff5d5a0fd28
comparison
equal deleted inserted replaced
3657:115f82775c46 3658:2d90dd30858c
53 53
54 virtual void Start() 54 virtual void Start()
55 { 55 {
56 } 56 }
57 57
58 virtual JobStepResult Step(); 58 virtual JobStepResult Step(const std::string& jobId) ORTHANC_OVERRIDE;
59 59
60 virtual void Reset(); 60 virtual void Reset();
61 61
62 virtual void Stop(JobStopReason reason); 62 virtual void Stop(JobStopReason reason);
63 63