comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.h @ 5553:28cc06e4859a large-queries

Added ExtendedApiV1: /changes
author Alain Mazy <am@orthanc.team>
date Thu, 11 Apr 2024 19:02:20 +0200
parents bbe45a71f5cd
children 3765085693e5
comparison
equal deleted inserted replaced
5549:dcbf0c776945 5553:28cc06e4859a
44 int64_t& studiesCount, 44 int64_t& studiesCount,
45 int64_t& seriesCount, 45 int64_t& seriesCount,
46 int64_t& instancesCount, 46 int64_t& instancesCount,
47 int64_t& compressedSize, 47 int64_t& compressedSize,
48 int64_t& uncompressedSize) ORTHANC_OVERRIDE; 48 int64_t& uncompressedSize) ORTHANC_OVERRIDE;
49
50 virtual void GetChanges2(std::list<ServerIndexChange>& target /*out*/,
51 bool& done /*out*/,
52 int64_t since,
53 int64_t to,
54 uint32_t limit,
55 ChangeType filterType) ORTHANC_OVERRIDE;
56
49 }; 57 };
50 58
51 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE; 59 virtual uint64_t MeasureLatency() ORTHANC_OVERRIDE;
52 }; 60 };
53 } 61 }