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



147
148
149
150
151
152
153
154
# File 'lib/groonga-query-log/replayer.rb', line 147

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

Instance Method Details

#flushObject



163
164
# File 'lib/groonga-query-log/replayer.rb', line 163

def flush
end


160
161
# File 'lib/groonga-query-log/replayer.rb', line 160

def print(string)
end

#puts(string) ⇒ Object



157
158
# File 'lib/groonga-query-log/replayer.rb', line 157

def puts(string)
end