Mercurial > hg > orthanc-databases
annotate Framework/Common/RetryDatabaseFactory.h @ 489:e8b4bb6a33e7
introduction of ORTHANC_SDK_COMPATIBLE_VERSIONS in CMake
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Fri, 22 Mar 2024 14:27:36 +0100 |
parents | ecd0b719cff5 |
children | 54d518dcd74a |
rev | line source |
---|---|
227 | 1 /** |
2 * Orthanc - A Lightweight, RESTful DICOM Store | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
459
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
5 * Copyright (C) 2017-2024 Osimis S.A., Belgium |
ecd0b719cff5
update year to 2024
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
389
diff
changeset
|
6 * Copyright (C) 2021-2024 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
227 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
9 * modify it under the terms of the GNU Affero General Public License | |
10 * as published by the Free Software Foundation, either version 3 of | |
11 * the License, or (at your option) any later version. | |
12 * | |
13 * This program is distributed in the hope that it will be useful, but | |
14 * WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
16 * Affero General Public License for more details. | |
17 * | |
18 * You should have received a copy of the GNU Affero General Public License | |
19 * along with this program. If not, see <http://www.gnu.org/licenses/>. | |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include "IDatabaseFactory.h" | |
26 | |
27 #include <Compatibility.h> | |
28 | |
29 namespace OrthancDatabases | |
30 { | |
31 class RetryDatabaseFactory : public IDatabaseFactory | |
32 { | |
33 private: | |
34 unsigned int maxConnectionRetries_; | |
35 unsigned int connectionRetryInterval_; | |
36 | |
37 protected: | |
38 virtual IDatabase* TryOpen() = 0; | |
39 | |
40 public: | |
41 RetryDatabaseFactory(unsigned int maxConnectionRetries, | |
42 unsigned int connectionRetryInterval) : | |
43 maxConnectionRetries_(maxConnectionRetries), | |
44 connectionRetryInterval_(connectionRetryInterval) | |
45 { | |
46 } | |
47 | |
48 virtual IDatabase* Open() ORTHANC_OVERRIDE; | |
49 }; | |
50 } |