class RSpec::EM::FakeClock::Timeout

Attributes

block[R]
interval[R]
repeat[R]
time[RW]

Public Class Methods

new(block, interval, repeat) click to toggle source
# File lib/rspec/eventmachine/fake_clock.rb, line 40
def initialize(block, interval, repeat)
  @block    = block
  @interval = interval
  @repeat   = repeat
end

Public Instance Methods

<=>(other) click to toggle source
# File lib/rspec/eventmachine/fake_clock.rb, line 46
def <=>(other)
  @time - other.time
end