Class: TraceViz::Formatters::Export::FormatterFactory

Inherits:
BaseFormatterFactory show all
Defined in:
lib/trace_viz/formatters/export/formatter_factory.rb

Instance Method Summary collapse

Methods inherited from BaseFormatterFactory

#fetch_formatter

Constructor Details

#initializeFormatterFactory

Returns a new instance of FormatterFactory.



12
13
14
15
16
17
18
# File 'lib/trace_viz/formatters/export/formatter_factory.rb', line 12

def initialize
  super(
    call: Export::MethodCallFormatter.new,
    return: Export::MethodReturnFormatter.new,
    summary_group: Export::SummaryGroupFormatter.new
  )
end