Package org.apache.wicket.ajax
Interface AjaxRequestTarget.ITargetRespondListener
-
- Enclosing interface:
- AjaxRequestTarget
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface AjaxRequestTarget.ITargetRespondListener
Components can implement this interface to get a notification when AjaxRequestTarget begins to respond. This can be used to postpone adding components to AjaxRequestTarget until the response begins.- Author:
- Matej Knopp
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onTargetRespond(AjaxRequestTarget target)
Invoked when AjaxRequestTarget is about to respond.
-
-
-
Method Detail
-
onTargetRespond
void onTargetRespond(AjaxRequestTarget target)
Invoked when AjaxRequestTarget is about to respond.- Parameters:
target
-
-
-