Package com.microsoft.durabletask
Class OrchestrationStatusQueryResult
- java.lang.Object
-
- com.microsoft.durabletask.OrchestrationStatusQueryResult
-
public final class OrchestrationStatusQueryResult extends java.lang.ObjectClass representing the results of a filtered orchestration metadata query.Orchestration metadata can be queried with filters using the
DurableTaskClient.queryInstances(com.microsoft.durabletask.OrchestrationStatusQuery)method.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetContinuationToken()Gets the continuation token to use with the next query ornullif no more metadata records are found.java.util.List<OrchestrationMetadata>getOrchestrationState()Gets the list of orchestration metadata records that matched theDurableTaskClient.queryInstances(com.microsoft.durabletask.OrchestrationStatusQuery)query.
-
-
-
Method Detail
-
getOrchestrationState
public java.util.List<OrchestrationMetadata> getOrchestrationState()
Gets the list of orchestration metadata records that matched theDurableTaskClient.queryInstances(com.microsoft.durabletask.OrchestrationStatusQuery)query.- Returns:
- the list of orchestration metadata records that matched the
DurableTaskClient.queryInstances(com.microsoft.durabletask.OrchestrationStatusQuery)query.
-
getContinuationToken
public java.lang.String getContinuationToken()
Gets the continuation token to use with the next query ornullif no more metadata records are found.Note that a non-null value does not always mean that there are more metadata records that can be returned by a query.
- Returns:
- the continuation token to use with the next query or
nullif no more metadata records are found.
-
-