Class: Flows::Plugin::Profiler::Report::FinishEvent Private

Inherits:
Event
  • Object
show all
Defined in:
lib/flows/plugin/profiler/report/events.rb

Overview

This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.

Method execution finish event.

Data is an execution time in microseconds.

Since:

  • 0.4.0

Instance Attribute Summary

Attributes inherited from Event

#data, #method_class, #method_name, #method_type

Instance Method Summary collapse

Methods inherited from Event

#subject

Instance Method Details

#to_sObject

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Since:

  • 0.4.0



36
37
38
# File 'lib/flows/plugin/profiler/report/events.rb', line 36

def to_s
  "finish(#{data} microseconds): #{subject}"
end