HiveMind
IMessageDispatcher.h
Go to the documentation of this file.
1 #ifndef __IMESSAGEDISPATCHER_H_
2 #define __IMESSAGEDISPATCHER_H_
3 
7 
8  public:
9  virtual ~IMessageDispatcher() = default;
10 
16  virtual bool deserializeAndDispatch() = 0;
17 };
18 #endif // __IMESSAGEDISPATCHER_H_
IMessageDispatcher::deserializeAndDispatch
virtual bool deserializeAndDispatch()=0
deserialize a message and dispatches it in the appropriate queue
IMessageDispatcher
A class to manage message dispatching to queues, sending messages at the right place.
Definition: IMessageDispatcher.h:6
IMessageDispatcher::~IMessageDispatcher
virtual ~IMessageDispatcher()=default