Package org.hippoecm.hst.core.container
Interface AsynchronousComponentWindowRenderer
-
public interface AsynchronousComponentWindowRenderer
AsynchronousComponentWindowRendererComponent implementing this interface is used in page aggregation phase. For example,
AggregationValve
may look up an AsynchronousComponentWindowRenderer for the specific asynchronous rendering mode when rendering an HST component window and invoke methods of this interface to render some tags for asynchronous rendering (e.g., AJAX script based or ESI based).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
processWindowBeforeRender(HstComponentWindow window, HstRequest request, HstResponse response)
Invoked when processing the doBeforeRender phase of a component window which should be asynchronously rendered.
-
-
-
Method Detail
-
processWindowBeforeRender
void processWindowBeforeRender(HstComponentWindow window, HstRequest request, HstResponse response)
Invoked when processing the doBeforeRender phase of a component window which should be asynchronously rendered.- Parameters:
window
-request
-response
-
-
-