Crypto++
5.6.3
Free C++ class library of cryptographic schemes
|
Network Receiver. More...
Public Member Functions | |
virtual bool | MustWaitToReceive () |
virtual bool | MustWaitForResult () |
virtual bool | Receive (byte *buf, size_t bufLen)=0 |
receive data from network source, returns whether result is immediately available | |
virtual unsigned int | GetReceiveResult ()=0 |
virtual bool | EofReceived () const =0 |
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. More... | |
bool | Wait (unsigned long milliseconds, CallStack const &callStack) |
wait on this object More... | |
|
pure virtualinherited |
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, Redirector, NetworkSink, and NetworkSource.
|
inherited |
wait on this object
same as creating an empty container, calling GetWaitObjects(), and calling Wait() on the container
Definition at line 426 of file wait.cpp.
Referenced by NetworkSource::GetWaitObjects(), and NetworkSink::Put2().