Condition.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _INTERFACE_BEE_UTIL_CONCURRENT_LOCKS_CONDITION_H
00024 #define _INTERFACE_BEE_UTIL_CONCURRENT_LOCKS_CONDITION_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/lang/InterruptedException.h"
00029 using beecrypt::lang::InterruptedException;
00030
00031 namespace beecrypt {
00032 namespace util {
00033 namespace concurrent {
00034 namespace locks {
00037 class BEECRYPTCXXAPI Condition
00038 {
00039 public:
00040 virtual ~Condition() {}
00041
00042 virtual void await() throw (InterruptedException) = 0;
00043 virtual void awaitUninterruptibly() = 0;
00044 virtual void signal() = 0;
00045 virtual void signalAll() = 0;
00046 };
00047 }
00048 }
00049 }
00050 }
00051
00052 #endif
00053
00054 #endif