Class: RestCore::Timer

Inherits:
Object
  • Object
show all
Defined in:
lib/rest-core/timer.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(timeout, error, &block) ⇒ Timer

Returns a new instance of Timer.



33
34
35
36
37
38
# File 'lib/rest-core/timer.rb', line 33

def initialize timeout, error, &block
  self.timeout = timeout
  self.error   = error
  self.block   = block
  start if block_given?
end

Instance Attribute Details

#errorObject

Returns the value of attribute error.



32
33
34
# File 'lib/rest-core/timer.rb', line 32

def error
  @error
end

#timeoutObject

Returns the value of attribute timeout.



32
33
34
# File 'lib/rest-core/timer.rb', line 32

def timeout
  @timeout
end

#timerObject

Returns the value of attribute timer.



32
33
34
# File 'lib/rest-core/timer.rb', line 32

def timer
  @timer
end

Instance Method Details

#cancelObject

should never raise!



46
47
48
49
# File 'lib/rest-core/timer.rb', line 46

def cancel
  timer.cancel if timer
  self.block = nil
end

#on_timeout(&block) ⇒ Object



40
41
42
43
# File 'lib/rest-core/timer.rb', line 40

def on_timeout &block
  self.block = block
  start if block_given?
end

#startObject



51
52
53
54
# File 'lib/rest-core/timer.rb', line 51

def start
  return if timeout.nil? || timeout.zero?
  self.timer = self.class.group.after(timeout){ block.call if block }
end