RLMAsyncTask.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. ////////////////////////////////////////////////////////////////////////////
  2. //
  3. // Copyright 2023 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. #import <Realm/RLMSyncSession.h>
  20. RLM_HEADER_AUDIT_BEGIN(nullability, sendability)
  21. /**
  22. A task object which can be used to observe or cancel an async open.
  23. When a synchronized Realm is opened asynchronously, the latest state of the
  24. Realm is downloaded from the server before the completion callback is invoked.
  25. This task object can be used to observe the state of the download or to cancel
  26. it. This should be used instead of trying to observe the download via the sync
  27. session as the sync session itself is created asynchronously, and may not exist
  28. yet when -[RLMRealm asyncOpenWithConfiguration:completion:] returns.
  29. */
  30. RLM_SWIFT_SENDABLE RLM_FINAL // is internally thread-safe
  31. @interface RLMAsyncOpenTask : NSObject
  32. /**
  33. Register a progress notification block.
  34. Each registered progress notification block is called whenever the sync
  35. subsystem has new progress data to report until the task is either cancelled
  36. or the completion callback is called. Progress notifications are delivered on
  37. the main queue.
  38. */
  39. - (void)addProgressNotificationBlock:(RLMProgressNotificationBlock)block;
  40. /**
  41. Register a progress notification block which is called on the given queue.
  42. Each registered progress notification block is called whenever the sync
  43. subsystem has new progress data to report until the task is either cancelled
  44. or the completion callback is called. Progress notifications are delivered on
  45. the supplied queue.
  46. */
  47. - (void)addProgressNotificationOnQueue:(dispatch_queue_t)queue
  48. block:(RLMProgressNotificationBlock)block;
  49. /**
  50. Cancel the asynchronous open.
  51. Any download in progress will be cancelled, and the completion block for this
  52. async open will never be called. If multiple async opens on the same Realm are
  53. happening concurrently, all other opens will fail with the error "operation cancelled".
  54. */
  55. - (void)cancel;
  56. @end
  57. RLM_HEADER_AUDIT_END(nullability, sendability)