comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.h @ 5757:5463c3ae3235 large-queries

refactored extended /changes
author Alain Mazy <am@orthanc.team>
date Thu, 05 Sep 2024 18:21:56 +0200
parents 3765085693e5
children ca06dde85358
comparison
equal deleted inserted replaced
5663:3765085693e5 5757:5463c3ae3235
46 int64_t& seriesCount, 46 int64_t& seriesCount,
47 int64_t& instancesCount, 47 int64_t& instancesCount,
48 int64_t& compressedSize, 48 int64_t& compressedSize,
49 int64_t& uncompressedSize) ORTHANC_OVERRIDE; 49 int64_t& uncompressedSize) ORTHANC_OVERRIDE;
50 50
51 virtual void GetChanges2(std::list<ServerIndexChange>& target /*out*/, 51 virtual void GetChangesExtended(std::list<ServerIndexChange>& target /*out*/,
52 bool& done /*out*/, 52 bool& done /*out*/,
53 int64_t since, 53 int64_t since,
54 int64_t to, 54 int64_t to,
55 uint32_t limit, 55 uint32_t limit,
56 ChangeType filterType) ORTHANC_OVERRIDE; 56 ChangeType filterType) ORTHANC_OVERRIDE;
57 57
58 }; 58 };
59 59
60 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE; 60 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE;
61 }; 61 };