Package com.helger.photon.ajax.callback
Interface IAjaxAfterExecutionCallback
-
- All Superinterfaces:
com.helger.commons.callback.ICallback
public interface IAjaxAfterExecutionCallback extends com.helger.commons.callback.ICallbackCallback interface to be used with theIAjaxInvokerto get notified after anIAjaxExecutorwas invoked.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonAfterExecution(IAjaxInvoker aInvoker, String sFunctionName, com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, IAjaxExecutor aExecutor, com.helger.photon.app.PhotonUnifiedResponse aAjaxResponse)Callback method
-
-
-
Method Detail
-
onAfterExecution
void onAfterExecution(@Nonnull IAjaxInvoker aInvoker, @Nonnull String sFunctionName, @Nonnull com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, @Nonnull IAjaxExecutor aExecutor, @Nonnull com.helger.photon.app.PhotonUnifiedResponse aAjaxResponse)
Callback method- Parameters:
aInvoker- TheIAjaxInvokerobject that invoked the AJAX functionsFunctionName- The name of the invoked functionaRequestScope- The request scope of the current invocationaExecutor- The executor that will be usedaAjaxResponse- The created Ajax response
-
-