comparison OrthancServer/Sources/ServerJobs/ThreadedSetOfInstancesJob.h @ 5310:b5c502bcaf99

added a route to DELETE /jobs/../archive
author Alain Mazy <am@osimis.io>
date Mon, 12 Jun 2023 18:42:06 +0200
parents acaea72a3e91
children 48b8dae6dc77
comparison
equal deleted inserted replaced
5309:fb231da5c0f1 5310:b5c502bcaf99
150 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE; 150 virtual bool Serialize(Json::Value& target) ORTHANC_OVERRIDE;
151 151
152 virtual bool GetOutput(std::string& output, 152 virtual bool GetOutput(std::string& output,
153 MimeType& mime, 153 MimeType& mime,
154 std::string& filename, 154 std::string& filename,
155 const std::string& key) ORTHANC_OVERRIDE; 155 const std::string& key) ORTHANC_OVERRIDE
156 {
157 return false;
158 }
159
160 virtual bool DeleteOutput(const std::string& key) ORTHANC_OVERRIDE
161 {
162 return false;
163 }
156 164
157 bool IsFailedInstance(const std::string& instance) const; 165 bool IsFailedInstance(const std::string& instance) const;
158 166
159 ServerContext& GetContext() const 167 ServerContext& GetContext() const
160 { 168 {