stop
Stop recording calls to add.
ObservationRecorder.stop()
Stop recording calls to add and returns an observation record.
ObservationRecorder.start();
//... some code /* ... */
ObservationRecorder.stop(); //-> observationRecord
Returns
{Object}
:
An observation record with the following structure:
{
keyDependencies: Map<observable,Set<key>>
valueDependencies: Set<observable>
}