EventDeferredFunc

A wrapper type for delegates that can be attached to an event, and run after all listeners are executed. This can be used to ensure an event has fully passed through all listeners, or to avoid having function/stack pointers within plugin code (which allows for dynamically reloading the plugin).

alias EventDeferredFunc = void delegate
()

Meta