Function theReactor

return a reference to the Reactor singleton

ref Reactor theReactor () nothrow @property @nogc @trusted;

In theory, @safe code must not access global variables. Since theReactor is only meant to be used by a single thread, however, this function is @trusted. If it were not, practically no code could be @safe.