Signal.emit

Call the connected handlers as explained in the documentation for the signal struct.

struct Signal(Types...)
@trusted
void
emit
(
Types params
)

Throws

Exceptions thrown in the signal handlers

Examples

@safe void handler() {};
Signal!() onTest;
onTest.connect(&handler);
onTest.emit();

Meta