class Lhm::Throttler::LegacyTime

Public Class Methods

new(timeout, stride) click to toggle source
# File lib/lhm/throttler/time.rb, line 23
def initialize(timeout, stride)
  @timeout_seconds = timeout / 1000.0
  @stride = stride
end