Class: SPNet::NoLimiter
- Defined in:
- lib/spnet/limiters/no_limiter.rb
Overview
Instance Method Summary collapse
-
#apply_limit(value, current_value = nil) ⇒ Object
Does not limit at all.
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 |