comparison OrthancServer/Sources/Database/BaseDatabaseWrapper.cpp @ 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
43 int64_t& uncompressedSize) 43 int64_t& uncompressedSize)
44 { 44 {
45 throw OrthancException(ErrorCode_NotImplemented); // Not supported 45 throw OrthancException(ErrorCode_NotImplemented); // Not supported
46 } 46 }
47 47
48 void BaseDatabaseWrapper::BaseTransaction::GetChanges2(std::list<ServerIndexChange>& target /*out*/, 48 void BaseDatabaseWrapper::BaseTransaction::GetChangesExtended(std::list<ServerIndexChange>& target /*out*/,
49 bool& done /*out*/, 49 bool& done /*out*/,
50 int64_t since, 50 int64_t since,
51 int64_t to, 51 int64_t to,
52 uint32_t limit, 52 uint32_t limit,
53 ChangeType filterType) 53 ChangeType filterType)
54 { 54 {
55 throw OrthancException(ErrorCode_NotImplemented); // Not supported 55 throw OrthancException(ErrorCode_NotImplemented); // Not supported
56 } 56 }
57 57
58 58