Interface Accepted<T>
-
- Type Parameters:
T- the type of final result
public interface Accepted<T>The accepted LRO (long running operation).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ActivationResponse<T>getActivationResponse()Gets the activation response of LRO.TgetFinalResult()Gets the final result of LRO.com.azure.core.util.polling.SyncPoller<Void,T>getSyncPoller()Gets theSyncPollerof LRO.
-
-
-
Method Detail
-
getActivationResponse
ActivationResponse<T> getActivationResponse()
Gets the activation response of LRO.- Returns:
- the activation response
-
getSyncPoller
com.azure.core.util.polling.SyncPoller<Void,T> getSyncPoller()
Gets theSyncPollerof LRO.- Returns:
- the sync poller.
-
getFinalResult
T getFinalResult()
Gets the final result of LRO.- Returns:
- the final result.
- Throws:
com.azure.core.management.exception.ManagementException- If polling fails.
-
-