| 
    Crypto++ 8.9
    
   Free C++ class library of cryptographic schemes 
   | 
 
Interface for objects that can be waited on. More...
#include <cryptlib.h>
 Inheritance diagram for Waitable:Public Member Functions | |
| virtual unsigned int | GetMaxWaitObjectCount () const =0 | 
| Maximum number of wait objects that this object can return.   | |
| virtual void | GetWaitObjects (WaitObjectContainer &container, CallStack const &callStack)=0 | 
| Retrieves waitable objects.   | |
| bool | Wait (unsigned long milliseconds, CallStack const &callStack) | 
| Wait on this object.   | |
Interface for objects that can be waited on.
Definition at line 1607 of file cryptlib.h.
      
  | 
  inlinevirtual | 
Definition at line 1610 of file cryptlib.h.
      
  | 
  pure virtual | 
Maximum number of wait objects that this object can return.
Implemented in BufferedTransformation.
      
  | 
  pure virtual | 
Retrieves waitable objects.
| container | the wait container to receive the references to the objects. | 
| callStack | CallStack() object used to select waitable objects | 
GetWaitObjects() is usually called in one of two ways. First, it can be called like something.GetWaitObjects(c, CallStack("my func after X", 0));. Second, if in an outer GetWaitObjects() method that itself takes a callStack parameter, it can be called like innerThing.GetWaitObjects(c, CallStack("MyClass::GetWaitObjects at X", &callStack));. 
Implemented in BufferedTransformation.
| bool Waitable::Wait | ( | unsigned long | milliseconds, | 
| CallStack const & | callStack | ||
| ) | 
Wait on this object.
Wait() is the same as creating an empty container, calling GetWaitObjects(), and then calling Wait() on the container.