Class: JIJI::Dao::Aggregator

Inherits:
Object
  • Object
show all
Defined in:
lib/jiji/dao/timed_data_dao.rb

Overview

一定期間のデータを集約するクラス

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#scaleObject (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