updating review comments

This commit is contained in:
Subramaniam, Ramya 2019-06-10 19:17:18 +05:30
parent 752d9461e6
commit 5864860045

View File

@ -857,6 +857,7 @@
NSDictionary *postCallsDict = [loadObject.pageJSON dict:@"postLoadActions"]; NSDictionary *postCallsDict = [loadObject.pageJSON dict:@"postLoadActions"];
if (postCallsDict) { if (postCallsDict) {
NSArray *actionList = [postCallsDict array:@"actionList"]; NSArray *actionList = [postCallsDict array:@"actionList"];
//TODO needs to create operation queue based on concurrent flag
BOOL isConcurrent = [postCallsDict boolForKey:@"concurrent"]; BOOL isConcurrent = [postCallsDict boolForKey:@"concurrent"];
//Needs further enhancements based on the flags. //Needs further enhancements based on the flags.
BOOL shouldTriggerFromCache = [postCallsDict boolForKey:@"shouldTriggerFromCache"]; BOOL shouldTriggerFromCache = [postCallsDict boolForKey:@"shouldTriggerFromCache"];
@ -866,6 +867,7 @@
[[MVMCoreActionHandler sharedActionHandler] handleActionWithDictionary:obj additionalData:nil delegateObject:nil]; [[MVMCoreActionHandler sharedActionHandler] handleActionWithDictionary:obj additionalData:nil delegateObject:nil];
}]; }];
} }
//Needs to handle when page is from cache.
} }
} }