KSTFileWatcherFlags
enum KSTFileWatcherFlags : unsigned long {}
Options mask describing the cases where watcher events should be generated. See dispatch_source_vnode_flags_t for more information.
-
See DISPATCH_VNODE_DELETE for more information.
Declaration
Objective-C
KSTFileWatcherFlagsDelete = DISPATCH_VNODE_DELETE -
See DISPATCH_VNODE_WRITE for more information.
Declaration
Objective-C
KSTFileWatcherFlagsWrite = DISPATCH_VNODE_WRITE -
See DISPATCH_VNODE_EXTEND for more information.
Declaration
Objective-C
KSTFileWatcherFlagsExtend = DISPATCH_VNODE_EXTEND -
See DISPATCH_VNODE_ATTRIB for more information.
Declaration
Objective-C
KSTFileWatcherFlagsAttrib = DISPATCH_VNODE_ATTRIB -
See DISPATCH_VNODE_LINK for more information.
Declaration
Objective-C
KSTFileWatcherFlagsLink = DISPATCH_VNODE_LINK -
See DISPATCH_VNODE_RENAME for more information.
Declaration
Objective-C
KSTFileWatcherFlagsRename = DISPATCH_VNODE_RENAME -
See DISPATCH_VNODE_REVOKE for more information.
Declaration
Objective-C
KSTFileWatcherFlagsRevoke = DISPATCH_VNODE_REVOKE -
See DISPATCH_VNODE_FUNLOCK for more information.
Declaration
Objective-C
KSTFileWatcherFlagsUnlock = DISPATCH_VNODE_FUNLOCK -
Generate watcher events for all cases.
Declaration
Objective-C
KSTFileWatcherFlagsAll = KSTFileWatcherFlagsDelete | KSTFileWatcherFlagsWrite | KSTFileWatcherFlagsExtend | KSTFileWatcherFlagsAttrib | KSTFileWatcherFlagsLink | KSTFileWatcherFlagsRename | KSTFileWatcherFlagsRevoke | KSTFileWatcherFlagsUnlock
KSTFileWatcherFlags Enumeration Reference