Class: JIJI::Dao::RawAggregator

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

Overview

集約を行なわないAggregator

Instance Attribute Summary

Attributes inherited from Aggregator

#scale

Instance Method Summary collapse

Methods inherited from Aggregator

#flush

Constructor Details

#initializeRawAggregator

Returns a new instance of RawAggregator.



257
258
259
# File 'lib/jiji/dao/timed_data_dao.rb', line 257

def initialize
  super("raw")
end

Instance Method Details

#next(timed_data) {|timed_data| ... } ⇒ Object

Yields:

  • (timed_data)


260
261
262
# File 'lib/jiji/dao/timed_data_dao.rb', line 260

def next( timed_data )
  yield timed_data
end