Class: SPNet::NoLimiter

Inherits:
Limiter show all
Defined in:
lib/spnet/limiters/no_limiter.rb

Overview

Author:

  • James Tunnell

Instance Method Summary collapse

Instance Method Details

#apply_limit(value, current_value = nil) ⇒ Object

Does not limit at all. Return the given value.



7
8
9
# File 'lib/spnet/limiters/no_limiter.rb', line 7

def apply_limit value, current_value = nil
  return value
end