ContinuationToken Class

  • java.lang.Object
    • Serializable
      • microsoft.servicefabric.actors.ContinuationToken

public class ContinuationToken

Represents a continuation token for query operations.

Remarks:A method that may return a partial set of results via a PagedResult<T> object also returns a continuation token in the object, which can be used in a subsequent call to return the next set of available results.

Constructor Summary

Constructor Description
ContinuationToken(Object marker)

Initializes a new instance of the microsoft.servicefabric.actors.ContinuationToken class.

Method Summary

Modifier and Type Method and Description
Object getMarker()

Gets a marker used to fetch the next set of available results.

Constructor Details

ContinuationToken

public ContinuationToken(Object marker)

Initializes a new instance of the microsoft.servicefabric.actors.ContinuationToken class.

Parameters:

marker - used to retrieve the next set of available results.

Method Details

getMarker

public Object getMarker()

Gets a marker used to fetch the next set of available results.

Returns:

A marker used to fetch the next set of available results.

Applies to