File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,10 @@ namespace ESPressio {
1818 namespace Observable {
1919
2020 // / An `ObservableWithBuckets` is an object that can be observed by any number of `IObserver` descendant types
21- // / This is a concrete implementation of `IObservable`, but it is NOT Thread-Safe .
21+ // / This is a concrete implementation of `IObservable`.
2222 // / This variation uses "Buckets" (a Map, effectively) keyed on the `IObserver` type.
2323 // / It may be more performant when your descendant Observable is observed by a large number of DIFFERENT Observer types!
24+ // / THIS TYPE IS NOT THREAD-SAFE!
2425 // / Registering or Unregistering Observers while Observers are being notified can lead to undefined behavior.
2526 // / If you need a Thread-Safe Implementation, use the `ThreadSafeObservableWithBuckets` class instead.
2627 class ObservableWithBuckets : public IObservable {
You can’t perform that action at this time.
0 commit comments