Salome HOME
Merge branch 'MessagesGroups'
[modules/shaper.git] / src / Events / Events_MessageGroup.h
1 // File:        Events_MessageGroup.hxx
2 // Created:     Thu Mar 13 2014
3 // Author:      Mikhail PONIKAROV
4
5 #ifndef Events_MessageGroup_HeaderFile
6 #define Events_MessageGroup_HeaderFile
7
8 #include <Events_Message.h>
9
10 /**\class Events_Message
11  * \ingroup EventsLoop
12  * \brief Message that allows to group messages and send them later as a group of messages.
13  *
14  * Loop detects such messages and accumulates them without sending. On "flush" loop sends it
15  * as a group-message.
16  */
17 class EVENTS_EXPORT Events_MessageGroup : public Events_Message {
18
19 public:
20
21   //! Creates the message
22   Events_MessageGroup(const Events_ID theID, const void* theSender = 0)
23     : Events_Message(theID, theSender) {}
24   //! do nothing in the destructor yet
25   virtual ~Events_MessageGroup() {}
26
27   //! Creates a new empty group (to store it in the loop before flush)
28   virtual Events_MessageGroup* newEmpty() = 0;
29   //! Allows to join the given message with the current one
30   virtual void Join(Events_MessageGroup& theJoined) = 0;
31 };
32
33 #endif