(file) Return to MessageQueueService.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/MessageQueueService.cpp between version 1.10 and 1.11

version 1.10, 2002/02/04 21:03:55 version 1.11, 2002/02/04 22:01:47
Line 363 
Line 363 
 { {
    // set the paused bit and update    // set the paused bit and update
    _capabilities |= module_capabilities::stopped;    _capabilities |= module_capabilities::stopped;
      update_service(_capabilities, _mask);
    _make_response(req, async_results::CIM_PAUSED);    _make_response(req, async_results::CIM_PAUSED);
    // now tell the meta dispatcher we are stopped    // now tell the meta dispatcher we are stopped
    update_service(_capabilities, _mask);  
      cout << " service paused " << endl;
   
 } }
 void MessageQueueService::handle_CimServiceResume(CimServiceResume *req) void MessageQueueService::handle_CimServiceResume(CimServiceResume *req)
 { {
    // clear the paused  bit and update    // clear the paused  bit and update
    _capabilities &= ~(module_capabilities::paused);    _capabilities &= ~(module_capabilities::paused);
      update_service(_capabilities, _mask);
    _make_response(req, async_results::OK);    _make_response(req, async_results::OK);
    // now tell the meta dispatcher we are stopped    // now tell the meta dispatcher we are stopped
    update_service(_capabilities, _mask);  
   
      cout << " service resumed " << endl;
 } }
  
 void MessageQueueService::handle_AsyncOperationStart(AsyncOperationStart *req) void MessageQueueService::handle_AsyncOperationStart(AsyncOperationStart *req)


Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2