Class: Timers::Wait

Inherits:
Object
  • Object
show all
Defined in:
lib/timers/wait.rb

Overview

An exclusive, monotonic timeout class.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(duration) ⇒ Wait

Returns a new instance of Wait.



40
41
42
43
# File 'lib/timers/wait.rb', line 40

def initialize(duration)
	@duration = duration
	@remaining = true
end

Instance Attribute Details

#durationObject (readonly)

Returns the value of attribute duration.



45
46
47
# File 'lib/timers/wait.rb', line 45

def duration
  @duration
end

#remainingObject (readonly)

Returns the value of attribute remaining.



46
47
48
# File 'lib/timers/wait.rb', line 46

def remaining
  @remaining
end

Class Method Details

.for(duration, &block) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/timers/wait.rb', line 28

def self.for(duration, &block)
	if duration
		timeout = new(duration)
		
		timeout.while_time_remaining(&block)
	else
		loop do
			yield(nil)
		end
	end
end

Instance Method Details

#while_time_remainingObject

Yields while time remains for work to be done:



49
50
51
52
53
54
55
56
57
# File 'lib/timers/wait.rb', line 49

def while_time_remaining
	@interval = Interval.new
	@interval.start
	
	yield @remaining while time_remaining?
ensure
	@interval.stop
	@interval = nil
end