Adds an observer to the Event instance. The observer will be called when the event is emitted.
Emits the event with the given data. All observers will be called with the data.
Removes an observer from the Event instance. The observer will no longer be called when the event is emitted.
Removes all observers from the Event instance.
The class can be used to add observers to an event and emit the event with data of type T (generic).