/* NSDistributedLock.h Copyright (c) 1995-2012, Apple Inc. All rights reserved. */ #import @class NSDate; @interface NSDistributedLock : NSObject { @private void *_priv; } + (NSDistributedLock *)lockWithPath:(NSString *)path; - (id)initWithPath:(NSString *)path; - (BOOL)tryLock; - (void)unlock; - (void)breakLock; - (NSDate *)lockDate; @end