RLMFindOptions.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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 `find` command on a `RLMMongoCollection`.
  22. @interface RLMFindOptions : NSObject
  23. /// The maximum number of documents to return. Specifying 0 will return all documents.
  24. @property (nonatomic) NSInteger limit;
  25. /// Limits the fields to return for all matching documents.
  26. @property (nonatomic, nullable) id<RLMBSON> projection NS_REFINED_FOR_SWIFT;
  27. /// The order in which to return matching documents.
  28. @property (nonatomic, nullable) id<RLMBSON> sort NS_REFINED_FOR_SWIFT;
  29. /// Options to use when executing a `find` command on a `RLMMongoCollection`.
  30. /// @param limit The maximum number of documents to return. Specifying 0 will return all documents.
  31. /// @param projection Limits the fields to return for all matching documents.
  32. /// @param sort The order in which to return matching documents.
  33. - (instancetype)initWithLimit:(NSInteger)limit
  34. projection:(id<RLMBSON> _Nullable)projection
  35. sort:(id<RLMBSON> _Nullable)sort
  36. NS_SWIFT_UNAVAILABLE("Please see FindOption");
  37. /// Options to use when executing a `find` command on a `RLMMongoCollection`.
  38. /// @param projection Limits the fields to return for all matching documents.
  39. /// @param sort The order in which to return matching documents.
  40. - (instancetype)initWithProjection:(id<RLMBSON> _Nullable)projection
  41. sort:(id<RLMBSON> _Nullable)sort
  42. NS_SWIFT_UNAVAILABLE("Please see FindOption");
  43. @end
  44. RLM_HEADER_AUDIT_END(nullability, sendability)