Package com.google.appengine.tools.admin
Interface UpdateListener
-
public interface UpdateListenerA listener which receives events during a long running operation that involves interaction with the server. Implement this interface to be notified of progress during application update.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonFailure(UpdateFailureEvent event)Called if the operation has failed.voidonProgress(UpdateProgressEvent event)Called each time some progress is made during the operation.voidonSuccess(UpdateSuccessEvent event)Called if the operation has completed successfully.
-
-
-
Method Detail
-
onProgress
void onProgress(UpdateProgressEvent event)
Called each time some progress is made during the operation.- Parameters:
event- a notnullevent.
-
onSuccess
void onSuccess(UpdateSuccessEvent event)
Called if the operation has completed successfully.- Parameters:
event- a notnullevent.
-
onFailure
void onFailure(UpdateFailureEvent event)
Called if the operation has failed.- Parameters:
event- a notnullevent.
-
-