Class MultiZoneUpdateEventResultProcessor
- java.lang.Object
-
- org.apache.tapestry5.internal.services.ajax.MultiZoneUpdateEventResultProcessor
-
- All Implemented Interfaces:
ComponentEventResultProcessor<MultiZoneUpdate>
public class MultiZoneUpdateEventResultProcessor extends Object implements ComponentEventResultProcessor<MultiZoneUpdate>
Deprecated.Deprecated in 5.3Handler forMultiZoneUpdate
responses from a component event handler method. Works by addingSingleZonePartialRendererFilter
s for each zone to the filter stack. Each zone writes its content as a string in the zones object of the reply, keyed on its id. JavaScript and CSS are collected for all zones rendered in the request (not for each individual zone). The final response will have some combination of "script", "scripts", "stylesheets", "content" (which is expected to be blank) and "zones".- Since:
- 5.1.0.1
-
-
Constructor Summary
Constructors Constructor Description MultiZoneUpdateEventResultProcessor(TypeCoercer typeCoercer, AjaxResponseRenderer ajaxResponseRenderer, AjaxPartialResponseRenderer partialRenderer)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
processResultValue(MultiZoneUpdate value)
Deprecated.For a given, non-null return value from a component event method, construct and send a response.
-
-
-
Constructor Detail
-
MultiZoneUpdateEventResultProcessor
public MultiZoneUpdateEventResultProcessor(TypeCoercer typeCoercer, AjaxResponseRenderer ajaxResponseRenderer, AjaxPartialResponseRenderer partialRenderer)
Deprecated.
-
-
Method Detail
-
processResultValue
public void processResultValue(MultiZoneUpdate value) throws IOException
Deprecated.Description copied from interface:ComponentEventResultProcessor
For a given, non-null return value from a component event method, construct and send a response. Starting in release 5.4, it is recommended that for any response that involves Tapestry pages or components, the implementation should create anIOOperation
to do the rendering, and add the operation to theRequest
as attributeTapestryConstants.RESPONSE_RENDERER
. This avoids a number of issues related to theEnvironment
.- Specified by:
processResultValue
in interfaceComponentEventResultProcessor<MultiZoneUpdate>
- Parameters:
value
- the value returned from a method- Throws:
IOException
-
-