CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions
SendMonitoringInfoHandler Class Reference
Inheritance diagram for SendMonitoringInfoHandler:

Public Member Functions

SendMonitoringInfoHandleroperator= (const SendMonitoringInfoHandler &)=delete
 
 SendMonitoringInfoHandler (const SendMonitoringInfoHandler &)=delete
 
 SendMonitoringInfoHandler ()=default
 

Private Member Functions

void HandleResponse (XrdCl::XRootDStatus *status, XrdCl::AnyObject *response) override
 

Detailed Description

Definition at line 72 of file XrdRequestManager.cc.

Constructor & Destructor Documentation

SendMonitoringInfoHandler::SendMonitoringInfoHandler ( const SendMonitoringInfoHandler )
delete
SendMonitoringInfoHandler::SendMonitoringInfoHandler ( )
default

Member Function Documentation

void SendMonitoringInfoHandler::HandleResponse ( XrdCl::XRootDStatus *  status,
XrdCl::AnyObject *  response 
)
inlineoverrideprivate

Definition at line 73 of file XrdRequestManager.cc.

References edmScanValgrind::buffer, uploadConditions::response, and mps_update::status.

73  {
74  if (response) {
75  XrdCl::Buffer *buffer = nullptr;
76  response->Get(buffer);
77  response->Set(static_cast<int *>(nullptr));
78  delete buffer;
79  }
80  // Send Info has a response object; we must delete it.
81  delete response;
82  delete status;
83  }
list status
Definition: mps_update.py:107
SendMonitoringInfoHandler& SendMonitoringInfoHandler::operator= ( const SendMonitoringInfoHandler )
delete