Inherits from NSObject
Declared in WAResultContinuation.h

Overview

A class that represents continuation token information used with paging Windows Azure data.

Tasks

Properties

continuationType

The type of continuation token.

@property (nonatomic, readonly) WAContinuationType continuationType

Declared In

WAResultContinuation.h

hasContinuation

Determines if there is a continuation. The default is WAContinuationNone.

@property (nonatomic, readonly) BOOL hasContinuation

Declared In

WAResultContinuation.h

nextMarker

A value that identifies the portion of the list to be returned with the next list operation if the list returned was not complete. The marker value may then be used in a subsequent call to request the next set of list items.

@property (nonatomic, readonly) NSString *nextMarker

Declared In

WAResultContinuation.h

nextPartitionKey

The next partition key to be returned in a subsequent query against the table.

@property (nonatomic, readonly) NSString *nextPartitionKey

Declared In

WAResultContinuation.h

nextRowKey

The next row key to be returned in a subsequent query against the table.

@property (nonatomic, readonly) NSString *nextRowKey

Declared In

WAResultContinuation.h

nextTableKey

If the list of tables returned is not complete, the name of the next table in the list.

@property (nonatomic, readonly) NSString *nextTableKey

Declared In

WAResultContinuation.h

Instance Methods

initWithContainerMarker:continuationType:

Initializes a newly created WAResultContinuation with a marker and continuation type.

- (id)initWithContainerMarker:(NSString *)marker continuationType:(WAContinuationType)continuationType

Parameters

marker

The marker of the next item in the list operation.

continuationType

The type of list operation.

Return Value

The newly initialized WAResultContinuation object.

Declared In

WAResultContinuation.h

initWithNextParitionKey:nextRowKey:

Initializes a newly created WAResultContinuation with a parition key and row key. The continuationType will be WAContinuationEntity.

- (id)initWithNextParitionKey:(NSString *)nextParitionKey nextRowKey:(NSString *)nextRowKey

Parameters

nextParitionKey

The next partition key.

nextRowKey

The next row key.

Return Value

The newly initialized WAResultContinuation object.

Declared In

WAResultContinuation.h

initWithNextTableKey:

Initializes a newly created WAResultContinuation with a table key. The continuationType will be WAContinuationTable.

- (id)initWithNextTableKey:(NSString *)nextTableKey

Parameters

nextTableKey

The next table key.

Return Value

The newly initialized WAResultContinuation object.

Declared In

WAResultContinuation.h