Spec-Zone.ru › Ruby on Rails 6.1

класс ActiveSupport::Notifications::Event

Родитель:
Объект

Атрибуты

children[R]
end[R]
name[R]
payload[RW]
time[R]
transaction_id[R]

Публичные методы класса

new(name, start, ending, transaction_id, payload) Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 58
def initialize(name, start, ending, transaction_id, payload)
  @name           = name
  @payload        = payload.dup
  @time           = start
  @transaction_id = transaction_id
  @end            = ending
  @children       = []
  @cpu_time_start = 0
  @cpu_time_finish = 0
  @allocation_count_start = 0
  @allocation_count_finish = 0
end

Публичные методы экземпляра

<<(event) Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 119
def <<(event)
  @children << event
end
allocations() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 99
def allocations
  @allocation_count_finish - @allocation_count_start
end

Возвращает количество выделенных участков памяти с момента вызова start! и до вызова finish!

cpu_time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 87
def cpu_time
  (@cpu_time_finish - @cpu_time_start) * 1000
end

Возвращает время работы процессора (в миллисекундах), прошедшее с момента вызова start! и до вызова finish!

duration() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 115
def duration
  1000.0 * (self.end - time)
end

Возвращает разницу в миллисекундах между началом выполнения события и его окончанием.

ActiveSupport::Notifications.subscribe('wait') do |*args|
  @event = ActiveSupport::Notifications::Event.new(*args)
end

ActiveSupport::Notifications.instrument('wait') do
  sleep 1
end

@event.duration # => 1000.138
finish!() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 79
def finish!
  @cpu_time_finish = now_cpu
  @end = now
  @allocation_count_finish = now_allocations
end

Записывает информацию в момент завершения события

idle_time() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 93
def idle_time
  duration - cpu_time
end

Возвращает время простоя (в миллисекундах), прошедшее с момента вызова start! и до вызова finish!

parent_of?(event) Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 123
def parent_of?(event)
  @children.include? event
end
start!() Показать исходный код
# File activesupport/lib/active_support/notifications/instrumenter.rb, line 72
def start!
  @time = now
  @cpu_time_start = now_cpu
  @allocation_count_start = now_allocations
end

Записывает информацию в момент начала события

© 2004–2020 David Heinemeier Hansson
Licensed under the MIT License.

Spec-Zone.ru

Настройки Оффлайн Что нового Помощь О нас
Spec-Zone .ru
спецификации, руководства, описания, API