comparison OrthancServer/ServerJobs/DicomModalityStoreJob.h @ 3770:66e18aad0654 transcoding

integration mainline->transcoding
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 17 Mar 2020 16:39:38 +0100
parents 5ff5d5a0fd28
children 594263db316a
comparison
equal deleted inserted replaced
3766:711d2ec2db34 3770:66e18aad0654
60 void OpenConnection(); 60 void OpenConnection();
61 61
62 void ResetStorageCommitment(); 62 void ResetStorageCommitment();
63 63
64 protected: 64 protected:
65 virtual bool HandleInstance(const std::string& instance); 65 virtual bool HandleInstance(const std::string& instance) ORTHANC_OVERRIDE;
66 66
67 virtual bool HandleTrailingStep(); 67 virtual bool HandleTrailingStep() ORTHANC_OVERRIDE;
68 68
69 public: 69 public:
70 DicomModalityStoreJob(ServerContext& context); 70 DicomModalityStoreJob(ServerContext& context);
71 71
72 DicomModalityStoreJob(ServerContext& context, 72 DicomModalityStoreJob(ServerContext& context,
98 void SetMoveOriginator(const std::string& aet, 98 void SetMoveOriginator(const std::string& aet,
99 int id); 99 int id);
100 100
101 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE; 101 virtual void Stop(JobStopReason reason) ORTHANC_OVERRIDE;
102 102
103 virtual void GetJobType(std::string& target) 103 virtual void GetJobType(std::string& target) ORTHANC_OVERRIDE
104 { 104 {
105 target = "DicomModalityStore"; 105 target = "DicomModalityStore";
106 } 106 }
107 107
108 virtual void GetPublicContent(Json::Value& value); 108 virtual void GetPublicContent(Json::Value& value) ORTHANC_OVERRIDE;
109 109
110 virtual bool Serialize(Json::Value& target); 110 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
111 111
112 virtual void Reset() ORTHANC_OVERRIDE; 112 virtual void Reset() ORTHANC_OVERRIDE;
113 113
114 void EnableStorageCommitment(bool enabled); 114 void EnableStorageCommitment(bool enabled);
115 }; 115 };