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