dispatcher: refine ::trigger API - close #1307

This commit is contained in:
skypjack
2026-03-17 15:27:10 +01:00
parent ef088a298f
commit 793ea69195
5 changed files with 14 additions and 14 deletions

View File

@@ -445,7 +445,7 @@ to all the listeners registered so far:
```cpp
dispatcher.trigger(an_event{42});
dispatcher.trigger<another_event>();
dispatcher.trigger(another_event{});
```
Listeners are invoked immediately, order of execution is not guaranteed. This