RLMSyncConfiguration.h 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2016 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 <Foundation/Foundation.h>
  19. @class RLMRealmConfiguration;
  20. @class RLMUser;
  21. @class RLMApp;
  22. @protocol RLMBSON;
  23. NS_ASSUME_NONNULL_BEGIN
  24. /**
  25. A configuration object representing configuration state for a Realm which is intended to sync with a Realm Object
  26. Server.
  27. */
  28. @interface RLMSyncConfiguration : NSObject
  29. /// The user to which the remote Realm belongs.
  30. @property (nonatomic, readonly) RLMUser *user;
  31. /**
  32. The value this Realm is partitioned on. The partition key is a property defined in
  33. MongoDB Realm. All classes with a property with this value will be synchronized to the
  34. Realm.
  35. */
  36. @property (nonatomic, readonly) id<RLMBSON> partitionValue;
  37. /**
  38. Whether nonfatal connection errors should cancel async opens.
  39. By default, if a nonfatal connection error such as a connection timing out occurs, any currently pending asyncOpen operations will ignore the error and continue to retry until it succeeds. If this is set to true, the open will instead fail and report the error.
  40. FIXME: This should probably be true by default in the next major version.
  41. */
  42. @property (nonatomic) bool cancelAsyncOpenOnNonFatalErrors;
  43. /// :nodoc:
  44. - (instancetype)initWithUser:(RLMUser *)user
  45. partitionValue:(nullable id<RLMBSON>)partitionValue __attribute__((unavailable("Use [RLMUser configurationWithPartitionValue:] instead")));
  46. /// :nodoc:
  47. + (RLMRealmConfiguration *)automaticConfiguration __attribute__((unavailable("Use [RLMUser configuration] instead")));
  48. /// :nodoc:
  49. + (RLMRealmConfiguration *)automaticConfigurationForUser:(RLMUser *)user __attribute__((unavailable("Use [RLMUser configuration] instead")));
  50. /// :nodoc:
  51. - (instancetype)init __attribute__((unavailable("This type cannot be created directly")));
  52. /// :nodoc:
  53. + (instancetype)new __attribute__((unavailable("This type cannot be created directly")));
  54. @end
  55. NS_ASSUME_NONNULL_END