Package com.helger.photon.ajax.callback
Interface IAjaxBeforeExecutionCallback
-
- All Superinterfaces:
com.helger.commons.callback.ICallback
public interface IAjaxBeforeExecutionCallback extends com.helger.commons.callback.ICallbackCallback interface to be used with theIAjaxInvokerto get notified before anIAjaxExecutoris invoked.- Author:
- Philip Helger
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonBeforeExecution(IAjaxInvoker aInvoker, String sFunctionName, com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, IAjaxExecutor aExecutor)Callback method
-
-
-
Method Detail
-
onBeforeExecution
void onBeforeExecution(@Nonnull IAjaxInvoker aInvoker, @Nonnull String sFunctionName, @Nonnull com.helger.web.scope.IRequestWebScopeWithoutResponse aRequestScope, @Nonnull IAjaxExecutor aExecutor)
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 used
-
-