class GoogleAnalyticsFeeds::RowHandler

A SAX-style row handler.

Extend this class and override the methods you care about to handle data feed row data.

@abstract @api public

Public Instance Methods

end_rows() click to toggle source

Called after all rows have been parsed.

By default, does nothing.

# File lib/google_analytics_feeds.rb, line 92
def end_rows
end
row(row) click to toggle source

Called when each row is parsed.

By default, does nothing.

@param row Hash

# File lib/google_analytics_feeds.rb, line 86
def row(row)
end
start_rows() click to toggle source

Called before any row is parsed.

By default, does nothing.

# File lib/google_analytics_feeds.rb, line 78
def start_rows
end