Public Member Functions | |
virtual void | onError (ErrorCode::Enum code, const std::string &description)=0 |
Protected Member Functions | |
virtual | ~ErrorListener () |
Defines an interface through which the Handler notifies subscribers about errors occurred while processing messages.
Definition at line 45 of file ErrorListener.h.
|
inlineprotectedvirtual |
Class provides an interface for handling errors in subscriptions. It doesn't provide an interface for instance deletion. However, since C++ doesn't have pure interface concept, destructor will be generated anyway. We can only control proper use of it. For this reason we hide from public use and make it available for descendants.
Definition at line 62 of file ErrorListener.h.
|
pure virtual |
Implement this member to get notified about errors.
code | identifies error occurred while processing messages. |
description | supplies notes on occurred error. |