Update MVMCoreLoadRequestOperation.h

This commit is contained in:
Khan, Arshad 2020-10-19 15:10:04 -04:00
parent 25867dd049
commit ebf0014a5a

View File

@ -74,7 +74,10 @@
+ (BOOL)cachePages:(nullable NSDictionary *)pages loadObject:(nonnull MVMCoreLoadObject *)loadObject error:(MVMCoreErrorObject *_Nullable *_Nullable)error;
/** Removes the Cached pages and modules.
* @param cacheDictionary a dictionary of pages and modules to be removed. */
* @param cacheDictionary a dictionary of two array of strings: pagesToClear and modulesToClear,
it will remove all the modules from Cache mentioned in modulesToClear array,
it will remove all the pages from Cache mentioned in pagesToClear array.
*/
+ (void)removeCaches:(nullable NSDictionary *)cacheDictionary;
/** Creates the view controller based on the load object passed in.