comparison OrthancServer/OrthancRestApi/OrthancRestApi.h @ 2965:9c0b0a6d8b54

MediaArchiveSize configuration option
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 05 Dec 2018 14:33:47 +0100
parents 5dd649de253d
children 10c610e80b15
comparison
equal deleted inserted replaced
2964:6896a7c1cbe2 2965:9c0b0a6d8b54
101 void AnswerStoredResource(RestApiPostCall& call, 101 void AnswerStoredResource(RestApiPostCall& call,
102 const std::string& publicId, 102 const std::string& publicId,
103 ResourceType resourceType, 103 ResourceType resourceType,
104 StoreStatus status) const; 104 StoreStatus status) const;
105 105
106 bool IsSynchronousJobRequest(bool isDefaultSynchronous,
107 const Json::Value& body) const;
108
109 void SubmitGenericJob(RestApiPostCall& call,
110 IJob* job,
111 bool isDefaultSynchronous,
112 const Json::Value& body) const;
113
106 void SubmitCommandsJob(RestApiPostCall& call, 114 void SubmitCommandsJob(RestApiPostCall& call,
107 SetOfCommandsJob* job, 115 SetOfCommandsJob* job,
108 bool isDefaultSynchronous, 116 bool isDefaultSynchronous,
109 const Json::Value& body) const; 117 const Json::Value& body) const;
110
111 void SubmitCommandsJob(RestApiPostCall& call,
112 SetOfCommandsJob* job,
113 bool isDefaultSynchronous) const;
114 }; 118 };
115 } 119 }