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.3
Handler for
MultiZoneUpdate
responses from a component event handler method. Works
by adding SingleZonePartialRendererFilter
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
ConstructorsConstructorDescriptionMultiZoneUpdateEventResultProcessor
(TypeCoercer typeCoercer, AjaxResponseRenderer ajaxResponseRenderer, AjaxPartialResponseRenderer partialRenderer) Deprecated. -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deprecated.For a given, non-null return value from a component event method, construct and send a response.
-
Constructor Details
-
MultiZoneUpdateEventResultProcessor
public MultiZoneUpdateEventResultProcessor(TypeCoercer typeCoercer, AjaxResponseRenderer ajaxResponseRenderer, AjaxPartialResponseRenderer partialRenderer) Deprecated.
-
-
Method Details
-
processResultValue
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
-