org.restlet.client.resource
Interface Result<T>

Type Parameters:
T - The class of the result object returned in case of success.

public interface Result<T>

Callback interface for asynchronous tasks. This is an equivalent to the AsyncCallback interface used by the GWT-RPC mechanism.

Author:
Jerome Louvel

Method Summary
 void onFailure(Throwable caught)
          Method called back by the associated GwtClientProxy object when a failure is detected.
 void onSuccess(T result)
          Method called back by the associated GwtClientProxy object in case of success.
 

Method Detail

onFailure

void onFailure(Throwable caught)
Method called back by the associated GwtClientProxy object when a failure is detected.

Parameters:
caught - The exception or error caught.

onSuccess

void onSuccess(T result)
Method called back by the associated GwtClientProxy object in case of success.

Parameters:
result - The result object.


Copyright © 2005-2013 Restlet S.A.S..