Represent an event running on background.
The Event class is used as the base class for the creation of Event objects, which are passed as parameters to event listeners when an event occurs.
The properties of the Event class carry basic information about an event, such as the event's type or source (who made the event) of the event.
For many events, such as the events represented by the Event class constants, this basic information is sufficient. Other events, however, may require more detailed information.
- Example Source
- Deprecated:
Event is a candidate to be deprecated.
Since C++11, calling member method of a class by a new thread passing by static method and using void pointer are recommeded to avoid. As the reason, using std::thread and std::bind will be better.
- See also
- samchon::library
- Author
- Jeongho Nam http://samchon.org
Definition at line 41 of file Event.hpp.