Class: GroongaQueryLog::Replayer::NullOutput

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga-query-log/replayer.rb

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.openObject



137
138
139
140
141
142
143
144
# File 'lib/groonga-query-log/replayer.rb', line 137

def open
  output = new
  if block_given?
    yield(output)
  else
    output
  end
end

Instance Method Details

#flushObject



153
154
# File 'lib/groonga-query-log/replayer.rb', line 153

def flush
end


150
151
# File 'lib/groonga-query-log/replayer.rb', line 150

def print(string)
end

#puts(string) ⇒ Object



147
148
# File 'lib/groonga-query-log/replayer.rb', line 147

def puts(string)
end