Add shared overload of the EventDriver.events property.

This allows accessing the shared "trigger" method from a shared event driver.
This commit is contained in:
Sönke Ludwig 2017-01-13 10:20:51 +01:00
parent a3ca0965cf
commit aa7b2946f3
4 changed files with 4 additions and 0 deletions

View file

@ -10,6 +10,7 @@ interface EventDriver {
@property EventDriverCore core();
@property EventDriverTimers timers();
@property EventDriverEvents events();
@property shared(EventDriverEvents) events() shared;
@property EventDriverSignals signals();
@property EventDriverSockets sockets();
@property EventDriverDNS dns();