Skip to content

Commit 42cae81

Browse files
committed
- Comment update in ObservableWithBuckets but still not ready for consumption
1 parent 48047f8 commit 42cae81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ESPressio_ObservableWithBuckets.hpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)