/** * call-seq: * Rev::TimerWatcher.detach -> Rev::TimerWatcher * * Detach the timer watcher from its current Rev::Loop. */ static VALUE Rev_TimerWatcher_detach(VALUE self) { Watcher_Detach(timer, self); return self; }