Function Reactor.pushFiberName

Temporarily change the fiber's name

auto mecca.reactor.Reactor.pushFiberName pushFiberName (
  string name,
  void* ptr
);

auto auto pushFiberName(T) (
  string name,
  scope T dlg
) nothrow @nogc @safe
if (isDelegate!T);

Meaning of arguments is as for setFiberName.

returns

A voldemort type whose destructor returns the fiber name to the one it had before. It also has a release function for returning the name earlier.