Record of a value including the virtual time it was produced on.
- rx.testing.js
Creates a new object recording the production of the specified value at the given virtual time.
time
(Number): Virtual time the value was produced on.value
(Any): Value that was produced[comparer]
(Function): Optional comparer function.
var recorded = new Rx.Recorded(200, 'value');
console.log(recorded.time);
// => 200
console.log(recorded.value);
// => value
- rx.js
Checks whether the given recorded object is equal to the current instance.
other
(Recorded): Recorded object to check for equality.
(Boolean): Returns true
if the Recorded equals the other, else false
.
var r1 = new Recorded(201, 'foo');
var r2 = new Recorded(201, 'bar');
var r3 = new Recorded(201, 'foo');
console.log(r1.equals(r2));
// => false
console.log(r1.equals(r3));
// => true
- rx.testing.js
Returns a string representation of the current Recorded value.
(String): String representation of the current Recorded value.
var r1 = new Recorded(201, 'foo');
console.log(r1.toString());
// => foo@201
- rx.testing.js
Gets the virtual time the value was produced on.
(Number): The virtual time the value was produced on.
var r1 = new Recorded(201, 'foo');
console.log(r1.time);
// => 201
- rx.testing.js
Gets the recorded value.
(Number): The recorded value.
var r1 = new Recorded(201, 'foo');
console.log(r1.value);
// => foo
- rx.testing.js