Class: Semian::Simple::SlidingWindow
- Inherits:
-
Object
- Object
- Semian::Simple::SlidingWindow
- Extended by:
- Forwardable
- Defined in:
- lib/semian/simple_sliding_window.rb
Overview
:nodoc:
Direct Known Subclasses
Instance Attribute Summary collapse
-
#max_size ⇒ Object
readonly
Returns the value of attribute max_size.
Instance Method Summary collapse
- #clear ⇒ Object (also: #destroy)
-
#initialize(max_size:) ⇒ SlidingWindow
constructor
A sliding window is a structure that stores the most @max_size recent timestamps like this: if @max_size = 4, current time is 10, @window =[5,7,9,10].
- #push(value) ⇒ Object (also: #<<)
- #reject!(&block) ⇒ Object
Constructor Details
#initialize(max_size:) ⇒ SlidingWindow
A sliding window is a structure that stores the most @max_size recent timestamps like this: if @max_size = 4, current time is 10, @window =[5,7,9,10]. Another push of (11) at 11 sec would make @window [7,9,10,11], shifting off 5.
17 18 19 20 |
# File 'lib/semian/simple_sliding_window.rb', line 17 def initialize(max_size:) @max_size = max_size @window = [] end |
Instance Attribute Details
#max_size ⇒ Object (readonly)
Returns the value of attribute max_size.
11 12 13 |
# File 'lib/semian/simple_sliding_window.rb', line 11 def max_size @max_size end |
Instance Method Details
#clear ⇒ Object Also known as: destroy
33 34 35 36 |
# File 'lib/semian/simple_sliding_window.rb', line 33 def clear @window.clear self end |
#push(value) ⇒ Object Also known as: <<
26 27 28 29 30 |
# File 'lib/semian/simple_sliding_window.rb', line 26 def push(value) resize_to(@max_size - 1) # make room @window << value self end |
#reject!(&block) ⇒ Object
22 23 24 |
# File 'lib/semian/simple_sliding_window.rb', line 22 def reject!(&block) @window.reject!(&block) end |