FeedOptionsBase Class

  • java.lang.Object
    • com.microsoft.azure.documentdb.FeedOptionsBase

public class FeedOptionsBase

Specifies the common options associated with feed methods (enumeration operations) in the Azure Cosmos DB database service.

Constructor Summary

Constructor Description
FeedOptionsBase()

Method Summary

Modifier and Type Method and Description
Integer getPageSize()

Gets the maximum number of items to be returned in the enumeration operation.

String getRequestContinuation()

Gets the request continuation token.

void setPageSize(Integer pageSize)

Sets the maximum number of items to be returned in the enumeration operation.

void setRequestContinuation(String requestContinuation)

Sets the request continuation token.

Constructor Details

FeedOptionsBase

protected FeedOptionsBase()

Method Details

getPageSize

public Integer getPageSize()

Gets the maximum number of items to be returned in the enumeration operation.

Returns:

the page size.

getRequestContinuation

public String getRequestContinuation()

Gets the request continuation token.

Returns:

the request continuation.

setPageSize

public void setPageSize(Integer pageSize)

Sets the maximum number of items to be returned in the enumeration operation.

Parameters:

pageSize - the page size.

setRequestContinuation

public void setRequestContinuation(String requestContinuation)

Sets the request continuation token.

Parameters:

requestContinuation - the request continuation.

Applies to