comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.h @ 5466:dceed5e3d6a9 pg-transactions

new DB plugin primitive: UpdateAndGetStatistics
author Alain Mazy <am@osimis.io>
date Fri, 15 Dec 2023 17:15:43 +0100
parents 176bc05f85f4
children c5a274851b23
comparison
equal deleted inserted replaced
5465:2829889bfa57 5466:dceed5e3d6a9
40 int64_t increment, 40 int64_t increment,
41 bool shared) ORTHANC_OVERRIDE 41 bool shared) ORTHANC_OVERRIDE
42 { 42 {
43 throw OrthancException(ErrorCode_NotImplemented); // Not supported 43 throw OrthancException(ErrorCode_NotImplemented); // Not supported
44 } 44 }
45
46 virtual void UpdateAndGetStatistics(int64_t& patientsCount,
47 int64_t& studiesCount,
48 int64_t& seriesCount,
49 int64_t& instancesCount,
50 int64_t& compressedSize,
51 int64_t& uncompressedSize) ORTHANC_OVERRIDE
52 {
53 throw OrthancException(ErrorCode_NotImplemented); // Not supported
54 }
55
45 }; 56 };
46 57
47 }; 58 };
48 } 59 }