Class: JIJI::Dao::Aggregator
- Inherits:
-
Object
- Object
- JIJI::Dao::Aggregator
- Defined in:
- lib/jiji/dao/timed_data_dao.rb
Overview
一定期間のデータを集約するクラス
Direct Known Subclasses
AbstractAggregator, RateDao::RawRatesAggregator, RawAggregator
Instance Attribute Summary collapse
-
#scale ⇒ Object
readonly
Returns the value of attribute scale.
Instance Method Summary collapse
-
#flush(time) ⇒ Object
集約したデータがある場合、それを引数としてブロックを実行する。.
-
#initialize(scale) ⇒ Aggregator
constructor
A new instance of Aggregator.
-
#next(timed_data) ⇒ Object
データを受け取り、集約したデータがある場合、それを引数としてブロックを実行する。.
Constructor Details
#initialize(scale) ⇒ Aggregator
Returns a new instance of Aggregator.
243 244 245 |
# File 'lib/jiji/dao/timed_data_dao.rb', line 243 def initialize( scale ) @scale = scale end |
Instance Attribute Details
#scale ⇒ Object (readonly)
Returns the value of attribute scale.
252 253 254 |
# File 'lib/jiji/dao/timed_data_dao.rb', line 252 def scale @scale end |
Instance Method Details
#flush(time) ⇒ Object
集約したデータがある場合、それを引数としてブロックを実行する。
250 251 |
# File 'lib/jiji/dao/timed_data_dao.rb', line 250 def flush( time ) end |
#next(timed_data) ⇒ Object
データを受け取り、集約したデータがある場合、それを引数としてブロックを実行する。
247 248 |
# File 'lib/jiji/dao/timed_data_dao.rb', line 247 def next( timed_data ) end |