hce-node application  1.4.3
HCE Hierarchical Cluster Engine node application
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
SupportNotifierIf.hpp
Go to the documentation of this file.
1 
15 #ifndef SUPPORTNOTIFIERIF_HPP_
16 #define SUPPORTNOTIFIERIF_HPP_
17 
18 #include "ReducingInputMessage.hpp"
19 #include "Exceptions.hpp"
20 #include <Poco/SharedPtr.h>
21 
22 namespace HCE{
23 namespace reduce{
24 
26 public:
27  virtual ~SupportNotifierIf(){}
28 
29  virtual void notifyWrongJSONStructure(unsigned long long itemId,
30  const Poco::SharedPtr<reduce_types::ReducingInputMessage>& reducingInputMessage) = 0;
31 
32  virtual void notifyNotFoundItemException(const NotFoundByKeyException& e) = 0;
33 };
34 
35 }
36 }
37 
38 #endif