Class: FetchResult

diffusion.topics. FetchResult


new FetchResult()

Encapsulates the results from a fetch operation issued to the server.

A fetch operation is issued using a fetch request which will return a result of this type via a Result.

Since:
  • 6.2

Methods


hasMore()

Indicates whether the fetch could have returned more results if it had not been constrained by the first, last or maximumResultSize limits.

Returns:

true if more results could have been returned, otherwise false

Type
Boolean

results()

Returns the results from the fetch operation.

Results are always returned in path order.

Returns:

a list of TopicResults, each representing a result single topic selected by the fetch operation.

Type
Array.<diffusion.topics.TopicResult.<V>>