Uses of Class
com.azure.core.util.polling.LongRunningOperationStatus
-
Packages that use LongRunningOperationStatus Package Description com.azure.core.util.polling Package containing API for long running operations. -
-
Uses of LongRunningOperationStatus in com.azure.core.util.polling
Fields in com.azure.core.util.polling declared as LongRunningOperationStatus Modifier and Type Field Description static LongRunningOperationStatusLongRunningOperationStatus. FAILEDRepresents that the long-running operation has failed to successfully complete, however this is still considered as complete long-running operation, meaning that thePollerFluxinstance will report that it is complete.static LongRunningOperationStatusLongRunningOperationStatus. IN_PROGRESSRepresents that the long-running operation is in progress and not yet complete.static LongRunningOperationStatusLongRunningOperationStatus. NOT_STARTEDRepresents that polling has not yet started for this long-running operation.static LongRunningOperationStatusLongRunningOperationStatus. SUCCESSFULLY_COMPLETEDRepresent that the long-running operation is completed successfully.static LongRunningOperationStatusLongRunningOperationStatus. USER_CANCELLEDRepresents that the long-running operation is cancelled by user, however this is still considered as complete long-running operation.Methods in com.azure.core.util.polling that return LongRunningOperationStatus Modifier and Type Method Description static LongRunningOperationStatusLongRunningOperationStatus. fromString(String name, boolean isComplete)Creates or finds aLongRunningOperationStatusfrom its string representation.LongRunningOperationStatusAsyncPollResponse. getStatus()Represents the status of the long-running operation at the time the last polling operation finished successfully.LongRunningOperationStatusPollResponse. getStatus()Represents the status of the long-running operation at the time the last polling operation finished successfully.Methods in com.azure.core.util.polling with parameters of type LongRunningOperationStatus Modifier and Type Method Description PollResponse<T>SyncPoller. waitUntil(LongRunningOperationStatus statusToWaitFor)Wait for the givenLongRunningOperationStatusto receive.PollResponse<T>SyncPoller. waitUntil(Duration timeout, LongRunningOperationStatus statusToWaitFor)Wait for the givenLongRunningOperationStatus.Constructors in com.azure.core.util.polling with parameters of type LongRunningOperationStatus Constructor Description PollResponse(LongRunningOperationStatus status, T value)Creates a newPollResponsewith status and value.PollResponse(LongRunningOperationStatus status, T value, Duration retryAfter)Creates a newPollResponsewith status, value, retryAfter and properties.
-