1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ffi::*;
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;
use crate::*;
extern_class!(
/// [Apple's documentation](https://developer.apple.com/documentation/cloudkit/ckmodifysubscriptionsoperation?language=objc)
#[unsafe(super(CKDatabaseOperation, CKOperation, NSOperation, NSObject))]
#[derive(Debug, PartialEq, Eq, Hash)]
#[cfg(all(feature = "CKDatabaseOperation", feature = "CKOperation"))]
pub struct CKModifySubscriptionsOperation;
);
#[cfg(all(feature = "CKDatabaseOperation", feature = "CKOperation"))]
extern_conformance!(
unsafe impl NSObjectProtocol for CKModifySubscriptionsOperation {}
);
#[cfg(all(feature = "CKDatabaseOperation", feature = "CKOperation"))]
impl CKModifySubscriptionsOperation {
extern_methods!(
#[unsafe(method(init))]
#[unsafe(method_family = init)]
pub unsafe fn init(this: Allocated<Self>) -> Retained<Self>;
#[cfg(feature = "CKSubscription")]
#[unsafe(method(initWithSubscriptionsToSave:subscriptionIDsToDelete:))]
#[unsafe(method_family = init)]
pub unsafe fn initWithSubscriptionsToSave_subscriptionIDsToDelete(
this: Allocated<Self>,
subscriptions_to_save: Option<&NSArray<CKSubscription>>,
subscription_i_ds_to_delete: Option<&NSArray<CKSubscriptionID>>,
) -> Retained<Self>;
#[cfg(feature = "CKSubscription")]
/// This property is not atomic.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(subscriptionsToSave))]
#[unsafe(method_family = none)]
pub unsafe fn subscriptionsToSave(&self) -> Option<Retained<NSArray<CKSubscription>>>;
#[cfg(feature = "CKSubscription")]
/// Setter for [`subscriptionsToSave`][Self::subscriptionsToSave].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(setSubscriptionsToSave:))]
#[unsafe(method_family = none)]
pub unsafe fn setSubscriptionsToSave(
&self,
subscriptions_to_save: Option<&NSArray<CKSubscription>>,
);
#[cfg(feature = "CKSubscription")]
/// This property is not atomic.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(subscriptionIDsToDelete))]
#[unsafe(method_family = none)]
pub unsafe fn subscriptionIDsToDelete(&self)
-> Option<Retained<NSArray<CKSubscriptionID>>>;
#[cfg(feature = "CKSubscription")]
/// Setter for [`subscriptionIDsToDelete`][Self::subscriptionIDsToDelete].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(setSubscriptionIDsToDelete:))]
#[unsafe(method_family = none)]
pub unsafe fn setSubscriptionIDsToDelete(
&self,
subscription_i_ds_to_delete: Option<&NSArray<CKSubscriptionID>>,
);
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// Called on success or failure of a subscription save
///
///
/// Each
/// `CKOperation`instance has a private serial queue. This queue is used for all callback block invocations.
/// This block may share mutable state with other blocks assigned to this operation, but any such mutable state
/// should not be concurrently used outside of blocks assigned to this operation.
///
/// This property is not atomic.
///
/// # Safety
///
/// - The returned block's argument 1 must be a valid pointer.
/// - The returned block's argument 2 must be a valid pointer or null.
/// - The returned block's argument 3 must be a valid pointer or null.
/// - This might not be thread-safe.
#[unsafe(method(perSubscriptionSaveBlock))]
#[unsafe(method_family = none)]
pub unsafe fn perSubscriptionSaveBlock(
&self,
) -> *mut block2::DynBlock<
dyn Fn(NonNull<CKSubscriptionID>, *mut CKSubscription, *mut NSError),
>;
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// Setter for [`perSubscriptionSaveBlock`][Self::perSubscriptionSaveBlock].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(setPerSubscriptionSaveBlock:))]
#[unsafe(method_family = none)]
pub unsafe fn setPerSubscriptionSaveBlock(
&self,
per_subscription_save_block: Option<
&block2::DynBlock<
dyn Fn(NonNull<CKSubscriptionID>, *mut CKSubscription, *mut NSError),
>,
>,
);
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// Called on success or failure of a subscription deletion
///
///
/// Each
/// `CKOperation`instance has a private serial queue. This queue is used for all callback block invocations.
/// This block may share mutable state with other blocks assigned to this operation, but any such mutable state
/// should not be concurrently used outside of blocks assigned to this operation.
///
/// This property is not atomic.
///
/// # Safety
///
/// - The returned block's argument 1 must be a valid pointer.
/// - The returned block's argument 2 must be a valid pointer or null.
/// - This might not be thread-safe.
#[unsafe(method(perSubscriptionDeleteBlock))]
#[unsafe(method_family = none)]
pub unsafe fn perSubscriptionDeleteBlock(
&self,
) -> *mut block2::DynBlock<dyn Fn(NonNull<CKSubscriptionID>, *mut NSError)>;
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// Setter for [`perSubscriptionDeleteBlock`][Self::perSubscriptionDeleteBlock].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(setPerSubscriptionDeleteBlock:))]
#[unsafe(method_family = none)]
pub unsafe fn setPerSubscriptionDeleteBlock(
&self,
per_subscription_delete_block: Option<
&block2::DynBlock<dyn Fn(NonNull<CKSubscriptionID>, *mut NSError)>,
>,
);
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// This block is called when the operation completes.
///
///
/// The
///
/// ```text
/// -[NSOperation completionBlock]
/// ```
///
/// will also be called if both are set.
/// If the error is
/// `CKErrorPartialFailure,`the error's userInfo dictionary contains a dictionary of subscriptionIDs to errors keyed off of
/// `CKPartialErrorsByItemIDKey.``savedSubscriptions,``deletedSubscriptionIDs`and any
/// `CKPartialErrorsByItemIDKey`errors are repeats of the data sent back in previous
/// `perSubscriptionSaveBlock`and
/// `perSubscriptionDeleteBlock`invocations
/// Each
/// `CKOperation`instance has a private serial queue. This queue is used for all callback block invocations.
/// This block may share mutable state with other blocks assigned to this operation, but any such mutable state
/// should not be concurrently used outside of blocks assigned to this operation.
///
/// This property is not atomic.
///
/// # Safety
///
/// - The returned block's argument 1 must be a valid pointer or null.
/// - The returned block's argument 2 must be a valid pointer or null.
/// - The returned block's argument 3 must be a valid pointer or null.
/// - This might not be thread-safe.
#[unsafe(method(modifySubscriptionsCompletionBlock))]
#[unsafe(method_family = none)]
pub unsafe fn modifySubscriptionsCompletionBlock(
&self,
) -> *mut block2::DynBlock<
dyn Fn(*mut NSArray<CKSubscription>, *mut NSArray<CKSubscriptionID>, *mut NSError),
>;
#[cfg(all(feature = "CKSubscription", feature = "block2"))]
/// Setter for [`modifySubscriptionsCompletionBlock`][Self::modifySubscriptionsCompletionBlock].
///
/// This is [copied][objc2_foundation::NSCopying::copy] when set.
///
/// # Safety
///
/// This might not be thread-safe.
#[unsafe(method(setModifySubscriptionsCompletionBlock:))]
#[unsafe(method_family = none)]
pub unsafe fn setModifySubscriptionsCompletionBlock(
&self,
modify_subscriptions_completion_block: Option<
&block2::DynBlock<
dyn Fn(
*mut NSArray<CKSubscription>,
*mut NSArray<CKSubscriptionID>,
*mut NSError,
),
>,
>,
);
);
}
/// Methods declared on superclass `NSObject`.
#[cfg(all(feature = "CKDatabaseOperation", feature = "CKOperation"))]
impl CKModifySubscriptionsOperation {
extern_methods!(
#[unsafe(method(new))]
#[unsafe(method_family = new)]
pub unsafe fn new() -> Retained<Self>;
);
}