Mercurial > hg > orthanc-stone
annotate Applications/Resources/Graveyard/Threading/IThreadSafety.h @ 2023:e0b7b2a8b914
support generation of ZIP archives in the presence of authorization tokens
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Sat, 03 Dec 2022 21:00:36 +0100 |
parents | 7053b8a0aaec |
children | 07964689cb0b |
rev | line source |
---|---|
0 | 1 /** |
2 * Stone of Orthanc | |
3 * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics | |
4 * Department, University Hospital of Liege, Belgium | |
1871
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
5 * Copyright (C) 2017-2022 Osimis S.A., Belgium |
7053b8a0aaec
upgrade to year 2022
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1870
diff
changeset
|
6 * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium |
0 | 7 * |
8 * This program is free software: you can redistribute it and/or | |
47 | 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. | |
0 | 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 | |
47 | 15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
16 * Affero General Public License for more details. | |
1596
4fb8fdf03314
removed annoying whitespace
Sebastien Jodogne <s.jodogne@gmail.com>
parents:
1586
diff
changeset
|
17 * |
47 | 18 * You should have received a copy of the GNU Affero General Public License |
0 | 19 * along with this program. If not, see <http://www.gnu.org/licenses/>. |
20 **/ | |
21 | |
22 | |
23 #pragma once | |
24 | |
25 #include <boost/noncopyable.hpp> | |
26 | |
27 namespace OrthancStone | |
28 { | |
29 /** | |
30 * Dummy interface to explicitely tag the interfaces whose derived | |
31 * class must be thread-safe. The different methods of such classes | |
32 * might be simlultaneously invoked by several threads, and should | |
33 * be properly protected by mutexes. | |
34 **/ | |
35 class IThreadSafe : public boost::noncopyable | |
36 { | |
37 public: | |
38 virtual ~IThreadSafe() | |
39 { | |
40 } | |
41 }; | |
42 | |
43 | |
44 /** | |
45 * Dummy interface to explicitely tag the interfaces that are NOT | |
46 * expected to be thread-safe. The Orthanc Stone framework ensures | |
47 * that at most one method of such classes will be invoked at a | |
48 * given time. Such classes are automatically protected by the | |
49 * Orthanc Stone framework wherever required. | |
50 **/ | |
51 class IThreadUnsafe : public boost::noncopyable | |
52 { | |
53 public: | |
54 virtual ~IThreadUnsafe() | |
55 { | |
56 } | |
57 }; | |
58 } |