Get the current value of an Observable as a reactive Atom.
fromObservable returns a Atom which provides synchronous reactive access to values produced
by the given Observable, by subscribing to that Observable. The returned Atom will always
have the most recent value emitted by the subscription, and will throw an error if the
Observable errors.
Get the current value of an
Observable
as a reactiveAtom
.fromObservable
returns aAtom
which provides synchronous reactive access to values produced by the givenObservable
, by subscribing to thatObservable
. The returnedAtom
will always have the most recent value emitted by the subscription, and will throw an error if theObservable
errors.