comparison OrthancServer/IDatabaseWrapper.h @ 1509:0586ed8897f1

limit and since arguments while retrieving DICOM resources in the REST API
author Sebastien Jodogne <s.jodogne@gmail.com>
date Mon, 10 Aug 2015 10:01:59 +0200
parents 0ac74fa21db8
children c40fe92a68e7
comparison
equal deleted inserted replaced
1508:86394eb9f5bb 1509:0586ed8897f1
79 int64_t id) = 0; 79 int64_t id) = 0;
80 80
81 virtual void GetAllPublicIds(std::list<std::string>& target, 81 virtual void GetAllPublicIds(std::list<std::string>& target,
82 ResourceType resourceType) = 0; 82 ResourceType resourceType) = 0;
83 83
84 virtual void GetAllPublicIds(std::list<std::string>& target,
85 ResourceType resourceType,
86 size_t since,
87 size_t limit) = 0;
84 88
85 virtual void GetChanges(std::list<ServerIndexChange>& target /*out*/, 89 virtual void GetChanges(std::list<ServerIndexChange>& target /*out*/,
86 bool& done /*out*/, 90 bool& done /*out*/,
87 int64_t since, 91 int64_t since,
88 uint32_t maxResults) = 0; 92 uint32_t maxResults) = 0;