google/observable
ऑब्जेक्ट को ऑब्जर्वेबल के रूप में चिह्नित करने और उन ऑब्जेक्ट के परिवर्तन होने पर सूचना प्राप्त करने का समर्थन।
GitHub पर देखें ↗आर्काइव
- Stars
- 59
- Forks
- 21
- अंतिम पुश (UTC)
- 1 दिस॰ 2021
- प्रोजेक्ट स्थिति
- आर्काइव
भाषाएँDart
उपयोग की गई निर्भरताएँ
निर्भरता सूची 9 आइटम
- collection
^1.11.0 - dart_internal
^0.2.1 - meta
^1.3.0 - quiver
^3.0.1 - build_runnerडेवलपमेंट
^2.1.2 - build_testडेवलपमेंट
^2.1.0 - build_web_compilersडेवलपमेंट
^3.0.0 - pedanticडेवलपमेंट
^1.10.0 - testडेवलपमेंट
^1.16.8
मूल README
यह अंग्रेज़ी मूल स्नैपशॉट है। नवीनतम सामग्री GitHub पर देखें।
README खोलें / बंद करें
Support for detecting and being notified when an object is mutated.
An observable is a way to be notified of a continuous stream of events over time.
Some suggested uses for this library:
- Observe objects for changes, and log when a change occurs
- Optimize for observable collections in your own APIs and libraries instead of diffing
- Implement simple data-binding by listening to streams
You may want to look at the former TC39 proposal Observe.observe, which was deprecated.
Usage
There are two general ways to detect changes:
- Listen to
Observable.changesand be notified when an object changes - Use
Differ.diffto determine changes between two objects