12345678910111213141516171819202122232425262728293031323334353637383940 |
- /*
- * This file is part of the SDWebImage package.
- * (c) Olivier Poitrey <rs@dailymotion.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- #import "BU_SDImageLoader.h"
- /**
- A loaders manager to manage multiple loaders
- */
- @interface BU_SDImageLoadersManager : NSObject <BU_SDImageLoader>
- /**
- Returns the global shared loaders manager instance. By default we will set [`SDWebImageDownloader.sharedDownloader`] into the loaders array.
- */
- @property (nonatomic, class, readonly, nonnull) BU_SDImageLoadersManager *sharedManager;
- /**
- All image loaders in manager. The loaders array is a priority queue, which means the later added loader will have the highest priority
- */
- @property (nonatomic, copy, nullable) NSArray<id<BU_SDImageLoader>>* loaders;
- /**
- Add a new image loader to the end of loaders array. Which has the highest priority.
-
- @param loader loader
- */
- //- (void)addLoader:(nonnull id<BU_SDImageLoader>)loader;
- //
- ///**
- // Remove a image loader in the loaders array.
- //
- // @param loader loader
- // */
- //- (void)removeLoader:(nonnull id<BU_SDImageLoader>)loader;
- @end
|