mirror of
https://github.com/mas-cli/mas
synced 2024-11-22 03:23:08 +00:00
19 lines
540 B
C
19 lines
540 B
C
|
//
|
||
|
// CKDownloadQueueObserver.h
|
||
|
// mas-cli
|
||
|
//
|
||
|
// Created by Ben Chatelain on 7/8/18.
|
||
|
// Copyright © 2018 mas-cli. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import "CKDownloadQueue.h"
|
||
|
@import StoreFoundation;
|
||
|
|
||
|
@protocol CKDownloadQueueObserver
|
||
|
|
||
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue changedWithAddition:(SSDownload *)download;
|
||
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue changedWithRemoval:(SSDownload *)download;
|
||
|
- (void)downloadQueue:(CKDownloadQueue *)downloadQueue statusChangedForDownload:(SSDownload *)download;
|
||
|
|
||
|
@end
|