# File lib/rubinius/actor/filter.rb, line 53
    def after(seconds, &action)
      raise ArgumentError, "no block given" unless action

      seconds = seconds.to_f
      if !@timeout or seconds < @timeout
        @timeout = seconds
        @timeout_action = action
      end
      self
    end