class RxRuby::Recorded
Record of a value including the virtual time it was produced on.
Public Class Methods
new(time, value)
click to toggle source
Calls superclass method
# File lib/rx_ruby/testing/recorded.rb, line 8 def initialize(time, value) super end
Public Instance Methods
to_s()
click to toggle source
# File lib/rx_ruby/testing/recorded.rb, line 12 def to_s "#{value} @ #{time}" end