diff 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
line wrap: on
line diff
--- a/OrthancServer/OrthancRestApi/OrthancRestApi.h	Wed Dec 05 12:58:56 2018 +0100
+++ b/OrthancServer/OrthancRestApi/OrthancRestApi.h	Wed Dec 05 14:33:47 2018 +0100
@@ -103,13 +103,17 @@
                               ResourceType resourceType,
                               StoreStatus status) const;
 
+    bool IsSynchronousJobRequest(bool isDefaultSynchronous,
+                                 const Json::Value& body) const;
+    
+    void SubmitGenericJob(RestApiPostCall& call,
+                          IJob* job,
+                          bool isDefaultSynchronous,
+                          const Json::Value& body) const;
+
     void SubmitCommandsJob(RestApiPostCall& call,
                            SetOfCommandsJob* job,
                            bool isDefaultSynchronous,
                            const Json::Value& body) const;
-
-    void SubmitCommandsJob(RestApiPostCall& call,
-                           SetOfCommandsJob* job,
-                           bool isDefaultSynchronous) const;
   };
 }