# File lib/pr_eventmachine.rb, line 192 192: def install_oneshot_timer interval 193: uuid = UuidGenerator::generate 194: @timers << [Time.now + interval, uuid] 195: @timers.sort! {|a,b| a.first <=> b.first} 196: uuid 197: end