Method: Fluent::Plugin::CSVParser#parse_fast

Defined in:
lib/fluent/plugin/parser_csv.rb

#parse_fast(text) {|time, record| ... } ⇒ Object

Yields:

  • (time, record)


55
56
57
58
59
# File 'lib/fluent/plugin/parser_csv.rb', line 55

def parse_fast(text, &block)
  r = parse_fast_internal(text)
  time, record = convert_values(parse_time(r), r)
  yield time, record
end