Move completeBatchFetching: to deprecated location in header

This commit is contained in:
Michael Schneider
2016-04-08 14:50:31 -07:00
parent c25a252e1c
commit f92e7d5a29

View File

@@ -22,17 +22,6 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (BOOL)isFetching;
/**
* Let the context object know that a batch fetch was completed.
*
* @param didComplete A boolean that states whether or not the batch fetch completed.
*
* @discussion Only by passing YES will the owner of the context know to attempt another batch update when necessary.
* For instance, when a table has reached the end of its data, a batch fetch will be attempted unless the context
* object thinks that it is still fetching.
*/
- (void)completeBatchFetching:(BOOL)didComplete;
/**
* Let the context object know that a batch fetch was completed.
*
@@ -67,6 +56,20 @@ NS_ASSUME_NONNULL_BEGIN
*/
- (void)beginBatchFetching;
#pragma mark - Deprecated
/**
* Let the context object know that a batch fetch was completed.
*
* @param didComplete A boolean that states whether or not the batch fetch completed.
*
* @discussion Only by passing YES will the owner of the context know to attempt another batch update when necessary.
* For instance, when a table has reached the end of its data, a batch fetch will be attempted unless the context
* object thinks that it is still fetching.
*/
- (void)completeBatchFetching:(BOOL)didComplete;
@end
NS_ASSUME_NONNULL_END