]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MONITOR/MONITORzmq/AliStorageServerThread.h
doxy: TPC/stressTest/testSparse converted
[u/mrichter/AliRoot.git] / MONITOR / MONITORzmq / AliStorageServerThread.h
1 #ifndef AliStorageServerThread_H
2 #define AliStorageServerThread_H
3
4 #include "AliStorageEventManager.h"
5 #include "AliStorageDatabase.h"
6
7 class AliStorageServerThread
8 {
9 public:
10         AliStorageServerThread();
11         ~AliStorageServerThread();
12 private:
13         void StartCommunication();
14         bool MarkEvent(struct eventStruct event);
15
16         //connection to database and storage
17         AliStorageDatabase *fDatabase;
18         std::string fStoragePath;
19
20         AliStorageServerThread(const AliStorageServerThread&);
21         AliStorageServerThread& operator=(const AliStorageServerThread&);
22 };
23
24 #endif