MigratoryData Client API for C++
Developer's Guide and Reference Manual
MigratoryDataListener.h
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2007-2014 Migratory Data Systems (http://migratorydata.com)
3  * ALL RIGHTS RESERVED. Use is subject to license terms.
4  */
5 #ifndef _MigratoryDataListener_h_included_
6 #define _MigratoryDataListener_h_included_
7 
8 #include "MigratoryDataMessage.h"
9 
15 namespace migratorydata {
18 
25 
26  public :
27 
33  virtual void onMessage(const MigratoryDataMessage& message) = 0;
34 
35 
81  virtual void onStatus(const std::string& status, std::string& info) = 0;
82  };
83 
84 }
85 
86 #endif // _MigratoryDataListener_h_included_
Implementations of this interface can handle the real-time messages received for the subscribed subje...
Definition: MigratoryDataListener.h:24
Include the declaration of the MigratoryDataMessage class.
Represent a message.
Definition: MigratoryDataMessage.h:25