diff options
Diffstat (limited to 'macosx/HBQueue.h')
-rw-r--r-- | macosx/HBQueue.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/macosx/HBQueue.h b/macosx/HBQueue.h index d1205b6fe..036df8d27 100644 --- a/macosx/HBQueue.h +++ b/macosx/HBQueue.h @@ -6,13 +6,15 @@ #import <Foundation/Foundation.h> -#import "HBCore.h" #import "HBDistributedArray.h" #import "HBQueueItem.h" #import "HBJobOutputFileWriter.h" NS_ASSUME_NONNULL_BEGIN +extern NSString * const HBQueueDidChangeStateNotification; +extern NSString * const HBQueueNotificationStateKey; // HBState + extern NSString * const HBQueueDidAddItemNotification; extern NSString * const HBQueueDidRemoveItemNotification; extern NSString * const HBQueueDidChangeItemNotification; @@ -45,11 +47,9 @@ extern NSString * const HBQueueItemNotificationItemKey; // HBQueueI - (instancetype)init NS_UNAVAILABLE; - (instancetype)initWithURL:(NSURL *)queueURL; -@property (nonatomic, readonly) HBCore *core; @property (nonatomic, readonly) HBDistributedArray<HBQueueItem *> *items; @property (nonatomic, nullable) HBQueueItem *currentItem; -@property (nonatomic, nullable) HBJobOutputFileWriter *currentLog; @property (nonatomic) NSUInteger pendingItemsCount; @property (nonatomic) NSUInteger failedItemsCount; |