doc/SidekiqUniqueJobs/Timing.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
Module: SidekiqUniqueJobs::Timing
— Documentation by YARD 0.9.26
</title>
<link rel="stylesheet" href="../css/style.css" type="text/css" />
<link rel="stylesheet" href="../css/common.css" type="text/css" />
<script type="text/javascript">
pathId = "SidekiqUniqueJobs::Timing";
relpath = '../';
</script>
<script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
<script type="text/javascript" charset="utf-8" src="../js/app.js"></script>
</head>
<body>
<div class="nav_wrap">
<iframe id="nav" src="../class_list.html?1"></iframe>
<div id="resizer"></div>
</div>
<div id="main" tabindex="-1">
<div id="header">
<div id="menu">
<a href="../_index.html">Index (T)</a> »
<span class='title'><span class='object_link'><a href="../SidekiqUniqueJobs.html" title="SidekiqUniqueJobs (module)">SidekiqUniqueJobs</a></span></span>
»
<span class="title">Timing</span>
</div>
<div id="search">
<a class="full_list_link" id="class_list_link"
href="../class_list.html">
<svg width="24" height="24">
<rect x="0" y="4" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="12" width="24" height="4" rx="1" ry="1"></rect>
<rect x="0" y="20" width="24" height="4" rx="1" ry="1"></rect>
</svg>
</a>
</div>
<div class="clear"></div>
</div>
<div id="content"><h1>Module: SidekiqUniqueJobs::Timing
</h1>
<div class="box_info">
<dl>
<dt>Included in:</dt>
<dd><span class='object_link'><a href="Lock.html" title="SidekiqUniqueJobs::Lock (class)">Lock</a></span>, <span class='object_link'><a href="Locksmith.html" title="SidekiqUniqueJobs::Locksmith (class)">Locksmith</a></span>, <span class='object_link'><a href="OnConflict/Reject.html" title="SidekiqUniqueJobs::OnConflict::Reject (class)">OnConflict::Reject</a></span>, <span class='object_link'><a href="OnConflict/Strategy.html" title="SidekiqUniqueJobs::OnConflict::Strategy (class)">OnConflict::Strategy</a></span>, <span class='object_link'><a href="Redis/Entity.html" title="SidekiqUniqueJobs::Redis::Entity (class)">Redis::Entity</a></span></dd>
</dl>
<dl>
<dt>Defined in:</dt>
<dd>lib/sidekiq_unique_jobs/timing.rb</dd>
</dl>
</div>
<h2>Overview</h2><div class="docstring">
<div class="discussion">
<p>Handles timing of things</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Author:</p>
<ul class="author">
<li>
<div class='inline'><p>Mikael Henriksson <a href="mailto:mikael@mhenrixon.com">mikael@mhenrixon.com</a></p>
</div>
</li>
</ul>
</div>
<h2>
Class Method Summary
<small><a href="#" class="summary_toggle">collapse</a></small>
</h2>
<ul class="summary">
<li class="public ">
<span class="summary_signature">
<a href="#clock_stamp-class_method" title="clock_stamp (class method)">.<strong>clock_stamp</strong> ⇒ Float </a>
</span>
<span class="summary_desc"><div class='inline'><p>Returns a float representation of the current time.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#now_f-class_method" title="now_f (class method)">.<strong>now_f</strong> ⇒ Float </a>
</span>
<span class="summary_desc"><div class='inline'><p>Returns the current time as float.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#time_source-class_method" title="time_source (class method)">.<strong>time_source</strong> ⇒ Integer </a>
</span>
<span class="summary_desc"><div class='inline'><p>Used to get a current representation of time as Integer.</p>
</div></span>
</li>
<li class="public ">
<span class="summary_signature">
<a href="#timed-class_method" title="timed (class method)">.<strong>timed</strong> ⇒ yield return, Float </a>
</span>
<span class="summary_desc"><div class='inline'><p>Used for timing method calls.</p>
</div></span>
</li>
</ul>
<div id="class_method_details" class="method_details_list">
<h2>Class Method Details</h2>
<div class="method_details first">
<h3 class="signature first" id="clock_stamp-class_method">
.<strong>clock_stamp</strong> ⇒ <tt>Float</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Returns a float representation of the current time.
Either from Process or Time</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Float</tt>)</span>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
50
51
52
53
54
55
56</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/sidekiq_unique_jobs/timing.rb', line 50</span>
<span class='kw'>def</span> <span class='id identifier rubyid_clock_stamp'>clock_stamp</span>
<span class='kw'>if</span> <span class='const'>Process</span><span class='period'>.</span><span class='id identifier rubyid_const_defined?'>const_defined?</span><span class='lparen'>(</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>CLOCK_MONOTONIC</span><span class='tstring_end'>"</span></span><span class='rparen'>)</span>
<span class='const'>Process</span><span class='period'>.</span><span class='id identifier rubyid_clock_gettime'>clock_gettime</span><span class='lparen'>(</span><span class='const'>Process</span><span class='op'>::</span><span class='const'>CLOCK_MONOTONIC</span><span class='rparen'>)</span>
<span class='kw'>else</span>
<span class='id identifier rubyid_now_f'>now_f</span>
<span class='kw'>end</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="now_f-class_method">
.<strong>now_f</strong> ⇒ <tt>Float</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Returns the current time as float</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Float</tt>)</span>
</li>
</ul>
<p class="tag_title">See Also:</p>
<ul class="see">
<li><span class='object_link'><a href="../SidekiqUniqueJobs.html#now_f-class_method" title="SidekiqUniqueJobs.now_f (method)">SidekiqUniqueJobs.now_f</a></span></li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
39
40
41</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/sidekiq_unique_jobs/timing.rb', line 39</span>
<span class='kw'>def</span> <span class='id identifier rubyid_now_f'>now_f</span>
<span class='const'><span class='object_link'><a href="../SidekiqUniqueJobs.html" title="SidekiqUniqueJobs (module)">SidekiqUniqueJobs</a></span></span><span class='period'>.</span><span class='id identifier rubyid_now_f'><span class='object_link'><a href="../SidekiqUniqueJobs.html#now_f-class_method" title="SidekiqUniqueJobs.now_f (method)">now_f</a></span></span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="time_source-class_method">
.<strong>time_source</strong> ⇒ <tt>Integer</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Used to get a current representation of time as Integer</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>Integer</tt>)</span>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
28
29
30</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/sidekiq_unique_jobs/timing.rb', line 28</span>
<span class='kw'>def</span> <span class='id identifier rubyid_time_source'>time_source</span>
<span class='tlambda'>-></span> <span class='tlambeg'>{</span> <span class='lparen'>(</span><span class='id identifier rubyid_clock_stamp'>clock_stamp</span> <span class='op'>*</span> <span class='int'>1000</span><span class='rparen'>)</span><span class='period'>.</span><span class='id identifier rubyid_to_i'>to_i</span> <span class='rbrace'>}</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
<div class="method_details ">
<h3 class="signature " id="timed-class_method">
.<strong>timed</strong> ⇒ <tt>yield return</tt>, <tt>Float</tt>
</h3><div class="docstring">
<div class="discussion">
<p>Used for timing method calls</p>
</div>
</div>
<div class="tags">
<p class="tag_title">Returns:</p>
<ul class="return">
<li>
<span class='type'>(<tt>yield return</tt>, <tt>Float</tt>)</span>
</li>
</ul>
</div><table class="source_code">
<tr>
<td>
<pre class="lines">
16
17
18
19
20</pre>
</td>
<td>
<pre class="code"><span class="info file"># File 'lib/sidekiq_unique_jobs/timing.rb', line 16</span>
<span class='kw'>def</span> <span class='id identifier rubyid_timed'>timed</span>
<span class='id identifier rubyid_start_time'>start_time</span> <span class='op'>=</span> <span class='id identifier rubyid_time_source'>time_source</span><span class='period'>.</span><span class='id identifier rubyid_call'>call</span>
<span class='lbracket'>[</span><span class='kw'>yield</span><span class='comma'>,</span> <span class='id identifier rubyid_time_source'>time_source</span><span class='period'>.</span><span class='id identifier rubyid_call'>call</span> <span class='op'>-</span> <span class='id identifier rubyid_start_time'>start_time</span><span class='rbracket'>]</span>
<span class='kw'>end</span></pre>
</td>
</tr>
</table>
</div>
</div>
</div>
<div id="footer">
Generated on Mon Sep 27 15:29:05 2021 by
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
0.9.26 (ruby-3.0.2).
</div>
</div>
</body>
</html>