An Objective-C wrapper for Mac OS X’s FSEvents C API.
リビジョン | a1bc02ee983dbdb0b43fd6b6f2f95215a6e29b97 (tree) |
---|---|
日時 | 2010-04-10 10:27:52 |
作者 | Aron Cedercrantz <aron@cede...> |
コミッター | Aron Cedercrantz |
Added isKernelDropped property to CDEvent class.
@@ -189,6 +189,26 @@ typedef FSEventStreamEventFlags CDEventFlags; | ||
189 | 189 | */ |
190 | 190 | @property (readonly) BOOL isUserDropped; |
191 | 191 | |
192 | +/** | |
193 | + * Provides some information as to what might have caused the need to rescan the URL including its children. | |
194 | + * | |
195 | + * @return <code>YES</code> if mustRescanSubDirectories returns <code>YES</code> and the cause were in kernelspace, otherwise <code>NO</code> | |
196 | + * | |
197 | + * @see kFSEventStreamEventFlagKernelDropped | |
198 | + * @see flags | |
199 | + * @see isGenericChange | |
200 | + * @see mustRescanSubDirectories | |
201 | + * @see isUserDropped | |
202 | + * @see isEventIdsWrapped | |
203 | + * @see isHistoryDone | |
204 | + * @see isRootChanged | |
205 | + * @see didVolumeMount | |
206 | + * @see didVolumeUnmount | |
207 | + * | |
208 | + * @since head | |
209 | + */ | |
210 | +@property (readonly) BOOL isKernelDropped; | |
211 | + | |
192 | 212 | #pragma mark Class object creators |
193 | 213 | |
194 | 214 | /** |