Class: Cascade::StatisticsStores::ArrayStore

Inherits:
AbstractStore show all
Defined in:
lib/cascade/statistics_stores/array_store.rb

Instance Attribute Summary

Attributes inherited from AbstractStore

#store

Instance Method Summary collapse

Methods inherited from AbstractStore

#initialize

Constructor Details

This class inherits a constructor from Cascade::StatisticsStores::AbstractStore

Instance Method Details

#update(value) ⇒ Object



6
7
8
# File 'lib/cascade/statistics_stores/array_store.rb', line 6

def update(value)
  @store << value
end