This commit is contained in:
John Estropia
2026-07-15 11:50:43 +09:00
parent 7db1cfecfb
commit 890e150b95
135 changed files with 2895 additions and 2526 deletions
+2 -2
View File
@@ -36,12 +36,12 @@ import CoreData
monitor.addObserver(self)
```
*/
public protocol ObjectObserver: AnyObject & Sendable {
public protocol ObjectObserver: AnyObject, Sendable {
/**
The `DynamicObject` type for the observed object
*/
associatedtype ObjectEntityType: DynamicObject & Sendable
associatedtype ObjectEntityType: DynamicObject
/**
Handles processing just before a change to the observed `object` occurs. (Optional)