public static abstract class

AsyncProxy.ProxyCallback

extends Object
java.lang.Object
   ↳ com.google.gwt.user.client.AsyncProxy.ProxyCallback<T>

Class Overview

The callback used by setProxyCallback(ProxyCallback).

Summary

Public Constructors
AsyncProxy.ProxyCallback()
Public Methods
void onComplete(T instance)
This method will be invoked by the AsyncProxy after method playback is complete.
void onFailure(Throwable t)
Invokes the global uncaught exception handler.
void onInit(T instance)
This method will be called with the instance object before method replay starts.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public AsyncProxy.ProxyCallback ()

Public Methods

public void onComplete (T instance)

This method will be invoked by the AsyncProxy after method playback is complete.

Parameters
instance the instance

public void onFailure (Throwable t)

Invokes the global uncaught exception handler.

public void onInit (T instance)

This method will be called with the instance object before method replay starts. This provides the developer with the opportunity to perform secondary initialization of the backing object.

Parameters
instance the instance