Class: GraphQL::Tracing::NotificationsTrace::DryMonitorAdapter::Event Private

Inherits:
Adapter::Event
  • Object
show all
Defined in:
lib/graphql/tracing/notifications_trace.rb

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.

Instance Attribute Summary

Attributes inherited from Adapter::Event

#name, #payload

Instance Method Summary collapse

Methods inherited from Adapter::Event

#initialize

Constructor Details

This class inherits a constructor from GraphQL::Tracing::NotificationsTrace::Adapter::Event

Instance Method Details

#finishObject

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.



51
52
53
# File 'lib/graphql/tracing/notifications_trace.rb', line 51

def finish
  Dry::Monitor.stop(@name, @payload)
end

#startObject

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.



47
48
49
# File 'lib/graphql/tracing/notifications_trace.rb', line 47

def start
  Dry::Monitor.start(@name, @payload)
end