class GroongaQueryLog::Command::Extract::DumpFormatter

Public Class Methods

new(output) click to toggle source
# File lib/groonga-query-log/command/extract.rb, line 238
def initialize(output)
  @output = output
end

Public Instance Methods

command(statistic, command_text) click to toggle source
# File lib/groonga-query-log/command/extract.rb, line 245
def command(statistic, command_text)
  @output.puts(command_text)
end
finish() click to toggle source
# File lib/groonga-query-log/command/extract.rb, line 249
def finish
end
start() click to toggle source
# File lib/groonga-query-log/command/extract.rb, line 242
def start
end