#ifndef ENDPOINT_H #define ENDPOINT_H namespace icinga { class EndpointManager; struct I2_ICINGA_API NewMethodEventArgs : public EventArgs { string Method; }; class I2_ICINGA_API Endpoint : public Object { private: set m_MethodSinks; set m_MethodSources; shared_ptr m_EndpointManager; public: typedef shared_ptr Ptr; typedef weak_ptr WeakPtr; shared_ptr GetEndpointManager(void) const; void SetEndpointManager(shared_ptr manager); void RegisterMethodSink(string method); void UnregisterMethodSink(string method); bool IsMethodSink(string method) const; void RegisterMethodSource(string method); void UnregisterMethodSource(string method); bool IsMethodSource(string method) const; virtual bool IsLocal(void) const = 0; virtual void ProcessRequest(Endpoint::Ptr sender, const JsonRpcRequest& message) = 0; virtual void ProcessResponse(Endpoint::Ptr sender, const JsonRpcResponse& message) = 0; Event OnNewMethodSink; Event OnNewMethodSource; void ForeachMethodSink(function callback); void ForeachMethodSource(function callback); }; } #endif /* ENDPOINT_H */