Sha256: c78b2c5998b0774e61362b691092f1de6841c8658998ad12df54c36ba9fe8d1d

Contents?: true

Size: 628 Bytes

Versions: 6

Compression:

Stored size: 628 Bytes

Contents

# Copyright (c) 2022 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details.
# frozen_string_literal: true

module Contrast
  module Utils
    # Timer is class that can track state about when an event starts and how long it takes
    # Also containes utility methods to get time values in milliseconds
    class Timer
      attr_reader :start_ms, :events

      def initialize time = Time.now
        @start_at = time
        @start_ms = (@start_at.to_f * 1000).to_i
        @events = {}
      end

      def self.now_ms
        (Time.now.to_f * 1000).to_i
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
contrast-agent-6.1.0 lib/contrast/utils/timer.rb
contrast-agent-6.0.0 lib/contrast/utils/timer.rb
contrast-agent-5.3.0 lib/contrast/utils/timer.rb
contrast-agent-5.2.0 lib/contrast/utils/timer.rb
contrast-agent-5.1.0 lib/contrast/utils/timer.rb
contrast-agent-5.0.0 lib/contrast/utils/timer.rb