Events interface

The section of the code illustrates events consumed by the class. It is for documentation purposes only because all events are handled through a common interface found in OMReactive. This section is useful if you want to implement the event processing yourself.

For example:

////    Events consumed    ////
public :
   // Events:
   // event1   // event2

Code generation supports array types in events. Is it possible to create the following GEN():

   Client->GEN(E("Hello world!"));

In this call, E is defined as follows:

   class E : public OMEvent {
      Char message[13];
    };

Feedback