icinga2/icinga/icingaapplication.h

36 lines
821 B
C
Raw Normal View History

#ifndef ICINGAAPPLICATION_H
#define ICINGAAPPLICATION_H
2012-03-31 16:29:53 +02:00
namespace icinga
{
class I2_ICINGA_API IcingaApplication : public Application
2012-03-31 16:29:53 +02:00
{
private:
EndpointManager::Ptr m_EndpointManager;
2012-03-31 16:29:53 +02:00
2012-04-20 13:49:04 +02:00
int NewComponentHandler(const EventArgs& ea);
int DeletedComponentHandler(const EventArgs& ea);
2012-04-20 13:49:04 +02:00
int NewRpcListenerHandler(const EventArgs& ea);
int DeletedRpcListenerHandler(const EventArgs& ea);
2012-04-20 13:49:04 +02:00
int NewRpcConnectionHandler(const EventArgs& ea);
int DeletedRpcConnectionHandler(const EventArgs& ea);
2012-04-18 15:22:25 +02:00
int TestTimerHandler(const TimerEventArgs& tea);
2012-03-31 16:29:53 +02:00
public:
typedef shared_ptr<IcingaApplication> Ptr;
typedef weak_ptr<IcingaApplication> WeakPtr;
2012-03-31 16:29:53 +02:00
int Main(const vector<string>& args);
2012-03-31 16:29:53 +02:00
2012-04-02 13:09:33 +02:00
void PrintUsage(const string& programPath);
EndpointManager::Ptr GetEndpointManager(void);
2012-03-31 16:29:53 +02:00
};
}
#endif /* ICINGAAPPLICATION_H */