comparison OrthancServer/ServerJobs/OrthancPeerStoreJob.h @ 2842:ff0ed5ea9e4e

trailing step in SetOfInstancesJob
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 26 Sep 2018 15:55:42 +0200
parents ea7aea6f6a95
children 8b00e4cb4a6b
comparison
equal deleted inserted replaced
2841:bf019ee38498 2842:ff0ed5ea9e4e
49 std::auto_ptr<HttpClient> client_; 49 std::auto_ptr<HttpClient> client_;
50 50
51 protected: 51 protected:
52 virtual bool HandleInstance(const std::string& instance); 52 virtual bool HandleInstance(const std::string& instance);
53 53
54 virtual bool HandleTrailingStep();
55
54 public: 56 public:
55 OrthancPeerStoreJob(ServerContext& context) : 57 OrthancPeerStoreJob(ServerContext& context) :
58 SetOfInstancesJob(false /* no trailing step */),
56 context_(context) 59 context_(context)
57 { 60 {
58 } 61 }
59 62
60 OrthancPeerStoreJob(ServerContext& context, 63 OrthancPeerStoreJob(ServerContext& context,