com.google.appengine.tools.admin
Interface UpdateListener


public interface UpdateListener

A listener which receives events during an application update. Implement this interface to be notified of progress during application update.


Method Summary
 void onFailure(UpdateFailureEvent event)
          Called if the update has failed.
 void onProgress(UpdateProgressEvent event)
          Called each time some progress is made during the update.
 void onSuccess(UpdateSuccessEvent event)
          Called if the update has completed successfully.
 

Method Detail

onProgress

void onProgress(UpdateProgressEvent event)
Called each time some progress is made during the update.

Parameters:
event - a not null event.

onSuccess

void onSuccess(UpdateSuccessEvent event)
Called if the update has completed successfully.

Parameters:
event - a not null event.

onFailure

void onFailure(UpdateFailureEvent event)
Called if the update has failed.

Parameters:
event - a not null event.