luxlabs header browser preview


@class NSObject;
@protocol OS_dispatch_queue;

@interface NTKFirstUnlockQueue : NSObject {
    const char *_name;
    NSObject<OS_dispatch_queue> *_queue;
    BOOL _isSuspended;
    BOOL _isBeforeFirstUnlock;
    struct os_unfair_lock_s { unsigned int _os_unfair_lock_opaque; } _suspendLock;
    int _notifyToken;
}

- (void)dealloc;
- (void)dispatch:(id /* block */)a0;
- (id)initWithName:(const char *)a0;
- (void).cxx_destruct;
- (void)_firstUnlock;
- (void)_suspendThreadBeforeFirstUnlock;

@end