The Gaudi Framework  master (ff829712)
Loading...
Searching...
No Matches
IToolSvc::Observer Class Reference

allow call-backs when a tool is a created or retrieved More...

#include </builds/gaudi/Gaudi/GaudiKernel/include/GaudiKernel/IToolSvc.h>

Public Member Functions

virtual ~Observer ()
 
void setUnregister (std::function< void()> unregister)
 
virtual void onCreate (const IAlgTool *)
 
virtual void onRetrieve (const IAlgTool *)
 

Private Attributes

std::function< void()> m_unregister
 

Detailed Description

allow call-backs when a tool is a created or retrieved

class myObserver : public ITooSvc::Observer {
void onCreate(IAlgTool& tool) {
cout << "tool " << tool.name() << " created " << endl;
}
void onRetrieve(IAlgTool& tool) {
cout << "someone requested " << tool.name() <<endl;
}
}
myObserver *observer = new myObserver;
IToolSvc* svc = ...
svc->registerObserver(observer);
The interface implemented by the AlgTool base class.
Definition IAlgTool.h:29
virtual void onCreate(const IAlgTool *)
Definition IToolSvc.h:236

IToolSvc implementations will call 'Observer::onCreate' when a tool is created, and 'Observer::onRetrieve' if a tool is retrieved.

The user is responsible of the life time of the object and must un-register it before it is deleted (e.g. during the finalization).

Definition at line 229 of file IToolSvc.h.

Constructor & Destructor Documentation

◆ ~Observer()

virtual IToolSvc::Observer::~Observer ( )
inlinevirtual

Definition at line 231 of file IToolSvc.h.

231 {
232 if ( m_unregister ) m_unregister();
233 }
std::function< void()> m_unregister
Definition IToolSvc.h:240

Member Function Documentation

◆ onCreate()

virtual void IToolSvc::Observer::onCreate ( const IAlgTool * )
inlinevirtual

Definition at line 236 of file IToolSvc.h.

236{}

◆ onRetrieve()

virtual void IToolSvc::Observer::onRetrieve ( const IAlgTool * )
inlinevirtual

Definition at line 237 of file IToolSvc.h.

237{}

◆ setUnregister()

void IToolSvc::Observer::setUnregister ( std::function< void()> unregister)
inline

Definition at line 234 of file IToolSvc.h.

234{ m_unregister = std::move( unregister ); }

Member Data Documentation

◆ m_unregister

std::function<void()> IToolSvc::Observer::m_unregister
private

Definition at line 240 of file IToolSvc.h.


The documentation for this class was generated from the following file: