RLMFindOneAndModifyOptions.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2020 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/RLMConstants.h>
  19. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  20. @protocol RLMBSON;
  21. /// Options to use when executing a `findOneAndUpdate`, `findOneAndReplace`,
  22. /// or `findOneAndDelete` command on a `RLMMongoCollection`.
  23. @interface RLMFindOneAndModifyOptions : NSObject
  24. /// Limits the fields to return for all matching documents.
  25. @property (nonatomic, nullable) id<RLMBSON> projection NS_REFINED_FOR_SWIFT;
  26. /// The order in which to return matching documents.
  27. @property (nonatomic, nullable) id<RLMBSON> sort NS_REFINED_FOR_SWIFT;
  28. /// Whether or not to perform an upsert, default is false
  29. /// (only available for find_one_and_replace and find_one_and_update)
  30. @property (nonatomic) BOOL upsert;
  31. /// When true then the new document is returned,
  32. /// Otherwise the old document is returned (default)
  33. /// (only available for findOneAndReplace and findOneAndUpdate)
  34. @property (nonatomic) BOOL shouldReturnNewDocument;
  35. /// Options to use when executing a `findOneAndUpdate`, `findOneAndReplace`,
  36. /// or `findOneAndDelete` command on a `RLMMongoCollection`.
  37. /// @param projection Limits the fields to return for all matching documents.
  38. /// @param sort The order in which to return matching documents.
  39. /// @param upsert Whether or not to perform an upsert, default is false
  40. /// (only available for findOneAndReplace and findOneAndUpdate)
  41. /// @param shouldReturnNewDocument When true then the new document is returned,
  42. /// Otherwise the old document is returned (default),
  43. /// (only available for findOneAndReplace and findOneAndUpdate)
  44. - (instancetype)initWithProjection:(id<RLMBSON> _Nullable)projection
  45. sort:(id<RLMBSON> _Nullable)sort
  46. upsert:(BOOL)upsert
  47. shouldReturnNewDocument:(BOOL)shouldReturnNewDocument NS_SWIFT_UNAVAILABLE("Please see FindOneAndModifyOptions");
  48. @end
  49. RLM_HEADER_AUDIT_END(nullability, sendability)