Checks if the event has finished its execution and is marked for removal. @returns true if the event has completed all runs and/or is marked for removal, otherwise it returns false if the event should continue execution.
| 47 | /// @returns true if the event has completed all runs and/or is marked for removal, otherwise |
| 48 | /// it returns false if the event should continue execution. |
| 49 | bool isFinished() const |
| 50 | { |
| 51 | return this->runCount == 0; |
| 52 | }; |
| 53 | |
| 54 | /// <summary>Marks the event for removal.</summary> |
| 55 | void removeEvent() |
no outgoing calls
no test coverage detected