(file) Return to CIMOperationRequestDispatcher.h CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Server

Diff for /pegasus/src/Pegasus/Server/CIMOperationRequestDispatcher.h between version 1.48 and 1.49

version 1.48, 2002/07/26 20:01:19 version 1.49, 2002/08/27 22:05:02
Line 87 
Line 87 
  
     Uint32 totalIssued() { return _totalIssued; }     Uint32 totalIssued() { return _totalIssued; }
  
     // Append a new entry to the response list      // Append a new entry to the response list.  Return value indicates
     void appendResponse(CIMResponseMessage* response)      // whether this response is the last one expected
       Boolean appendResponse(CIMResponseMessage* response)
     {     {
         _appendResponseMutex.lock(pegasus_thread_self());         _appendResponseMutex.lock(pegasus_thread_self());
         _responseList.append(response);         _responseList.append(response);
           Boolean returnValue = (totalIssued() == numberResponses());
         _appendResponseMutex.unlock();         _appendResponseMutex.unlock();
           return returnValue;
     }     }
  
     Uint32 numberResponses() { return _responseList.size(); }     Uint32 numberResponses() { return _responseList.size(); }


Legend:
Removed from v.1.48  
changed lines
  Added in v.1.49

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2