< Previous by Date | Date Index | Next by Date > |
< Previous in Thread | Thread Index |
From what I managed to read in the code
usually when a function name starts with ‘internal’ it is used for
encapsulating (making it private / protected) the code and as helper functions.
In this case mFifo.messageAvailable()
is checked before running internalProcess. E.G. run ‘internalProcess’ if there’s a message in mFifo. If your meaning was “what is the role of process()
?” the way to understand it is reading the DUM documentation. From: resiprocate-devel-bounces@xxxxxxxxxxxxxxxxxxx
[mailto:resiprocate-devel-bounces@xxxxxxxxxxxxxxxxxxx] On Behalf Of julien thai Dear all, Can you explaine me the role of
internalProcess? Looking forward to hearing your reply. Julien bool DialogUsageManager::process() { return (mFifo.messageAvailable() &&
internalProcess(std::auto_ptr<Message>(mFifo.getNext()))); } |