Class: Lockfile::SleepCycle

Inherits:
Array
  • Object
show all
Defined in:
lib/rq/lockfile.rb

Instance Attribute Summary collapse

Attributes included from Fieldable

#fieldset

Instance Method Summary collapse

Methods inherited from Array

fields

Methods included from Fieldable

#fields, #fields=

Constructor Details

#initialize(min, max, inc) ⇒ SleepCycle

Returns a new instance of SleepCycle.

Raises:

  • (RangeError)


27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/rq/lockfile.rb', line 27

def initialize min, max, inc
#--{{{
  @min, @max, @inc = Float(min), Float(max), Float(inc)
  @range = @max - @min
  raise RangeError, "max(#{ @max }) <= min(#{ @min })" if @max <= @min
  raise RangeError, "inc(#{ @inc }) > range(#{ @range })" if @inc > @range
  raise RangeError, "inc(#{ @inc }) <= 0" if @inc <= 0
  raise RangeError, "range(#{ @range }) <= 0" if @range <= 0
  s = @min
  push(s) and s += @inc while(s <= @max)
  self[-1] = @max if self[-1] < @max
  reset
#--}}}
end

Instance Attribute Details

#incObject (readonly)

Returns the value of attribute inc.



26
27
28
# File 'lib/rq/lockfile.rb', line 26

def inc
  @inc
end

#maxObject (readonly)

Returns the value of attribute max.



24
25
26
# File 'lib/rq/lockfile.rb', line 24

def max
  @max
end

#minObject (readonly)

–{{{



23
24
25
# File 'lib/rq/lockfile.rb', line 23

def min
  @min
end

#rangeObject (readonly)

Returns the value of attribute range.



25
26
27
# File 'lib/rq/lockfile.rb', line 25

def range
  @range
end

Instance Method Details

#nextObject

–}}}



41
42
43
44
45
46
47
# File 'lib/rq/lockfile.rb', line 41

def next
#--{{{
  ret = self[@idx]
  @idx = ((@idx + 1) % self.size)
  ret
#--}}}
end

#resetObject

–}}}



48
49
50
51
52
# File 'lib/rq/lockfile.rb', line 48

def reset
#--{{{
  @idx = 0
#--}}}
end