Package com.microsoft.rest
Interface ServiceCallback<T>
-
- Type Parameters:
T- the type of the response
public interface ServiceCallback<T>The callback used for client side asynchronous operations.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidfailure(Throwable t)Override this method to handle REST call failures.voidsuccess(T result)Override this method to handle successful REST call results.
-