Fabcoin Core
0.16.2
P2P Digital Currency
|
Interface for objects that can be waited on. More...
#include <cryptlib.h>
Public Member Functions | |
virtual | ~Waitable () |
virtual unsigned int | GetMaxWaitObjectCount () const =0 |
Maximum number of wait objects that this object can return. More... | |
virtual void | GetWaitObjects (WaitObjectContainer &container, CallStack const &callStack)=0 |
Retrieves waitable objects. More... | |
bool | Wait (unsigned long milliseconds, CallStack const &callStack) |
Wait on this object. More... | |
Interface for objects that can be waited on.
Definition at line 1295 of file cryptlib.h.
|
inlinevirtual |
Definition at line 1298 of file cryptlib.h.
|
pure virtual |
Maximum number of wait objects that this object can return.
Implemented in BufferedTransformation, and Redirector.
|
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, and Redirector.
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.