Package com.google.gwt.core.client
Interface Callback<T,F>
- Type Parameters:
T
- The type returned on successF
- The type returned on failure
public interface Callback<T,F>
A callback for any asynchronous call that can result in success or failure.
-
Method Summary
-
Method Details
-
onFailure
Called when an asynchronous call fails to complete normally.- Parameters:
reason
- failure encountered
-
onSuccess
Called when an asynchronous call completes successfully.- Parameters:
result
- the value returned
-