📄 finder_client_xif.hh
字号:
/* * Copyright (c) 2001-2007 International Computer Science Institute * See LICENSE file for licensing, conditions, and warranties on use. * * DO NOT EDIT THIS FILE - IT IS PROGRAMMATICALLY GENERATED * * Generated by 'clnt-gen'. * * $XORP: xorp/xrl/interfaces/finder_client_xif.hh,v 1.17 2007/02/16 22:47:38 pavlin Exp $ */#ifndef __XRL_INTERFACES_FINDER_CLIENT_XIF_HH__#define __XRL_INTERFACES_FINDER_CLIENT_XIF_HH__#undef XORP_LIBRARY_NAME#define XORP_LIBRARY_NAME "XifFinderClient"#include "libxorp/xlog.h"#include "libxorp/callback.hh"#include "libxipc/xrl.hh"#include "libxipc/xrl_error.hh"#include "libxipc/xrl_sender.hh"class XrlFinderClientV0p2Client {public: XrlFinderClientV0p2Client(XrlSender* s) : _sender(s) {} virtual ~XrlFinderClientV0p2Client() {} typedef XorpCallback1<void, const XrlError&>::RefPtr HelloCB; /** * Send Xrl intended to: * * No op method used by finder to poll for liveness. * * @param dst_xrl_target_name the Xrl target name of the destination. */ bool send_hello( const char* dst_xrl_target_name, const HelloCB& cb ); typedef XorpCallback1<void, const XrlError&>::RefPtr RemoveXrlFromCacheCB; /** * Send Xrl intended to: * * Remove Xrl from cache. The client should remove currently cached value * for Xrl from it's cached. On the next invocation of Xrl, the client * will need to consult the Finder for updated information, though * implementations may consult the Finder for updated information before. * * @param dst_xrl_target_name the Xrl target name of the destination. */ bool send_remove_xrl_from_cache( const char* dst_xrl_target_name, const string& xrl, const RemoveXrlFromCacheCB& cb ); typedef XorpCallback1<void, const XrlError&>::RefPtr RemoveXrlsForTargetFromCacheCB; /** * Send Xrl intended to: * * Remove all Xrls relating to target from cache. * * @param dst_xrl_target_name the Xrl target name of the destination. */ bool send_remove_xrls_for_target_from_cache( const char* dst_xrl_target_name, const string& target_name, const RemoveXrlsForTargetFromCacheCB& cb ); typedef XorpCallback3<void, const XrlError&, const uint32_t*, const string*>::RefPtr DispatchTunneledXrlCB; /** * Send Xrl intended to: * * Execute tunneled Xrl. Permits finder to call methods on clients through * FinderClient. * * @param dst_xrl_target_name the Xrl target name of the destination. */ bool send_dispatch_tunneled_xrl( const char* dst_xrl_target_name, const string& xrl, const DispatchTunneledXrlCB& cb );protected: XrlSender* _sender;private: void unmarshall_hello( const XrlError& e, XrlArgs* a, HelloCB cb ); void unmarshall_remove_xrl_from_cache( const XrlError& e, XrlArgs* a, RemoveXrlFromCacheCB cb ); void unmarshall_remove_xrls_for_target_from_cache( const XrlError& e, XrlArgs* a, RemoveXrlsForTargetFromCacheCB cb ); void unmarshall_dispatch_tunneled_xrl( const XrlError& e, XrlArgs* a, DispatchTunneledXrlCB cb );};#endif /* __XRL_INTERFACES_FINDER_CLIENT_XIF_HH__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -