Inherits from NSObject
Declared in CMISPagedResult.h

Overview

The result of executing an operation which has potentially more results than returned in once.

Properties

hasMoreItems

@property (readonly) BOOL hasMoreItems

numItems

@property (readonly) NSInteger numItems

resultArray

@property (nonatomic, strong, readonly) NSArray *resultArray

Class Methods

pagedResultUsingFetchBlock:andLimitToMaxItems:andStartFromSkipCount:completionBlock:

+ (void)pagedResultUsingFetchBlock:(CMISFetchNextPageBlock)fetchNextPageBlock andLimitToMaxItems:(NSInteger)maxItems andStartFromSkipCount:(NSInteger)skipCount completionBlock:(void ( ^ ) ( CMISPagedResult *result , NSError *error ))completionBlock

Instance Methods

enumerateItemsUsingBlock:completionBlock:

- (void)enumerateItemsUsingBlock:(void ( ^ ) ( CMISObject *object , BOOL *stop ))enumerationBlock completionBlock:(void ( ^ ) ( NSError *error ))completionBlock

fetchNextPageWithCompletionBlock:

- (void)fetchNextPageWithCompletionBlock:(void ( ^ ) ( CMISPagedResult *result , NSError *error ))completionBlock