< Previous by Date Date Index Next by Date >
< Previous in Thread Thread Index  

RE: [reSIProcate] the role of internalprocess in DUM


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
Sent:
ב 16 מאי 2005 19:37
To: resiprocate-devel@xxxxxxxxxxxxxxxxxxx
Subject: [reSIProcate] the role of internalprocess in DUM

 

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())));

}