RLMAsymmetricObject.h 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2022 Realm Inc.
  4. //
  5. // Licensed under the Apache License, Version 2.0 (the "License");
  6. // you may not use this file except in compliance with the License.
  7. // You may obtain a copy of the License at
  8. //
  9. // http://www.apache.org/licenses/LICENSE-2.0
  10. //
  11. // Unless required by applicable law or agreed to in writing, software
  12. // distributed under the License is distributed on an "AS IS" BASIS,
  13. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. // See the License for the specific language governing permissions and
  15. // limitations under the License.
  16. //
  17. ////////////////////////////////////////////////////////////////////////////
  18. #import <Realm/RLMObjectBase.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @class RLMObjectSchema, RLMPropertyDescriptor, RLMRealm;
  21. /**
  22. `RLMAsymmetricObject` is a base class used to define asymmetric Realm objects.
  23. Asymmetric objects can only be created using the `createInRealm:`
  24. function, and cannot be added, removed or queried.
  25. When created, asymmetric objects will be synced unidirectionally to the MongoDB
  26. database and cannot be accessed locally.
  27. Linking an asymmetric object within an `Object` is not allowed and will throw an error.
  28. The property types supported on `RLMAsymmetricObject` are the same as for `RLMObject`,
  29. except for that asymmetric objects can only link to embedded objects, so `RLMObject`
  30. and `RLMArray<RLMObject>` properties are not supported (`RLMEmbeddedObject` and
  31. `RLMArray<RLEmbeddedObject>` *are*).
  32. */
  33. @interface RLMAsymmetricObject : RLMObjectBase
  34. #pragma mark - Creating & Initializing Objects
  35. /**
  36. Creates an unmanaged instance of a Realm object.
  37. */
  38. - (instancetype)init NS_DESIGNATED_INITIALIZER;
  39. /**
  40. Creates an unmanaged instance of a Realm object.
  41. Pass in an `NSArray` or `NSDictionary` instance to set the values of the object's properties.
  42. */
  43. - (instancetype)initWithValue:(id)value;
  44. /**
  45. Returns the class name for a Realm object subclass.
  46. @warning Do not override. Realm relies on this method returning the exact class
  47. name.
  48. @return The class name for the model class.
  49. */
  50. + (NSString *)className;
  51. /**
  52. Creates an Asymmetric object, which will be synced unidirectionally and
  53. cannot be queried locally.
  54. Objects created using this method will not be added to the Realm.
  55. @warning This method may only be called during a write transaction.
  56. @warning This method always returns nil.
  57. @param realm The Realm to be used to create the asymmetric object..
  58. @param value The value used to populate the object.
  59. @return Returns `nil`
  60. */
  61. + (instancetype)createInRealm:(RLMRealm *)realm withValue:(id)value;
  62. #pragma mark - Properties
  63. /**
  64. The object schema which lists the managed properties for the object.
  65. */
  66. @property (nonatomic, readonly) RLMObjectSchema *objectSchema;
  67. #pragma mark - Dynamic Accessors
  68. /// :nodoc:
  69. - (nullable id)objectForKeyedSubscript:(NSString *)key;
  70. /// :nodoc:
  71. - (void)setObject:(nullable id)obj forKeyedSubscript:(NSString *)key;
  72. @end
  73. RLM_HEADER_AUDIT_END(nullability, sendability)