Range handlers use recursive actions

fixes #363
This commit is contained in:
Ryan Nystrom
2015-03-09 12:33:02 -07:00
parent 10adca52d0
commit 5e7755fac0
3 changed files with 20 additions and 3 deletions

View File

@@ -331,10 +331,19 @@ typedef CALayer *(^ASDisplayNodeLayerBlock)();
* This method is used to notify the node that it should purge any content that is both expensive to fetch and to
* retain in memory.
*
* @see fetchRemoteData
* @see clearRemoteData and fetchRemoteData
*/
- (void)recursivelyClearRemoteData;
/**
* @abstract Calls -fetchRemoteData on the receiver and its subnode hierarchy.
*
* @discussion Fetches content from remote sources for the current node and all subnodes.
*
* @see fetchRemoteData and clearRemoteData
*/
- (void)recursivelyFetchRemoteData;
/**
* @abstract Toggle displaying a placeholder over the node that covers content until the node and all subnodes are
* displayed.