Sha256: 5b61ba7833f698b484d474052a025dbe8e47dc96378d5f35b8cee19b6e4475be

Contents?: true

Size: 1.03 KB

Versions: 24

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

module SidekiqUniqueJobs
  # Handles timing of things
  #
  # @author Mikael Henriksson <mikael@zoolutions.se>
  module Timing
    module_function

    #
    # Used for timing method calls
    #
    #
    # @return [yield return, Float]
    #
    def timed
      start_time = time_source.call

      [yield, time_source.call - start_time]
    end

    #
    # Used to get a current representation of time as Integer
    #
    #
    # @return [Integer]
    #
    def time_source
      -> { (clock_stamp * 1000).to_i }
    end

    #
    # Returns the current time as float
    #
    # @see SidekiqUniqueJobs.now_f
    #
    # @return [Float]
    #
    def now_f
      SidekiqUniqueJobs.now_f
    end

    #
    # Returns a float representation of the current time.
    #   Either from Process or Time
    #
    #
    # @return [Float]
    #
    def clock_stamp
      if Process.const_defined?("CLOCK_MONOTONIC")
        Process.clock_gettime(Process::CLOCK_MONOTONIC)
      else
        Time.now.to_f
      end
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
sidekiq-unique-jobs-7.0.0.beta5 lib/sidekiq_unique_jobs/timing.rb
sidekiq-unique-jobs-7.0.0.beta4 lib/sidekiq_unique_jobs/timing.rb
sidekiq-unique-jobs-7.0.0.beta3 lib/sidekiq_unique_jobs/timing.rb
sidekiq-unique-jobs-7.0.0.beta2 lib/sidekiq_unique_jobs/timing.rb