comparison Framework/Plugins/IDatabaseBackend.h @ 431:7c1fe5d6c12c pg-transactions

PG: IncrementGlobalProperty
author Alain Mazy <am@osimis.io>
date Thu, 07 Dec 2023 12:13:43 +0100
parents 91124cc8a8c7
children f16faa1fdc46
comparison
equal deleted inserted replaced
430:f1f3c5554283 431:7c1fe5d6c12c
346 int64_t resource) = 0; 346 int64_t resource) = 0;
347 347
348 // New in Orthanc 1.12.0 348 // New in Orthanc 1.12.0
349 virtual void ListAllLabels(std::list<std::string>& target, 349 virtual void ListAllLabels(std::list<std::string>& target,
350 DatabaseManager& manager) = 0; 350 DatabaseManager& manager) = 0;
351
352 virtual bool HasAtomicIncrementGlobalProperty() = 0;
353
354 virtual int64_t IncrementGlobalProperty(DatabaseManager& manager,
355 const char* serverIdentifier,
356 int32_t property,
357 int64_t increment) = 0;
351 }; 358 };
352 } 359 }