summaryrefslogtreecommitdiffstats
path: root/ceee/ie/broker/broker_rpc_client.h
diff options
context:
space:
mode:
Diffstat (limited to 'ceee/ie/broker/broker_rpc_client.h')
-rw-r--r--ceee/ie/broker/broker_rpc_client.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/ceee/ie/broker/broker_rpc_client.h b/ceee/ie/broker/broker_rpc_client.h
index d204e62..fc38c0d 100644
--- a/ceee/ie/broker/broker_rpc_client.h
+++ b/ceee/ie/broker/broker_rpc_client.h
@@ -14,23 +14,23 @@
class BrokerRpcClient {
public:
BrokerRpcClient();
- ~BrokerRpcClient();
+ virtual ~BrokerRpcClient();
// Initialize connection with server.
- HRESULT Connect();
+ virtual HRESULT Connect();
// Relese connection with server
- void Disconnect();
+ virtual void Disconnect();
// Returns true if object ready for remote calls.
- bool is_connected() const {
+ virtual bool is_connected() const {
return context_ != NULL && binding_handle_ != NULL;
}
// @name Remote calls.
// @{
// Calls FireEvent on server side.
- HRESULT FireEvent(const char* event_name, const char* event_args);
+ virtual HRESULT FireEvent(const char* event_name, const char* event_args);
// Adds uma to histograms on the server side. Either performance timings or
// generic histogram.
virtual bool SendUmaHistogramTimes(BSTR event_name,