# File lib/rbot/timer.rb, line 93 def add_once(period, data=nil, &func) debug "adding one-off timer, period #{period}" @handle += 1 @timers[@handle] = Action.new(period, data, true, &func) start_on_add return @handle end