Class AjaxPageClassComponentEventResultProcessor
java.lang.Object
org.apache.tapestry5.internal.services.AjaxPageClassComponentEventResultProcessor
- All Implemented Interfaces:
ComponentEventResultProcessor<Class>
public class AjaxPageClassComponentEventResultProcessor
extends Object
implements ComponentEventResultProcessor<Class>
Processes a Class result by converting the Class to a logical page name, then processing that.
-
Constructor Summary
ConstructorsConstructorDescriptionAjaxPageClassComponentEventResultProcessor
(ComponentSource componentSource, ComponentEventResultProcessor masterProcessor) -
Method Summary
Modifier and TypeMethodDescriptionvoid
processResultValue
(Class value) For a given, non-null return value from a component event method, construct and send a response.
-
Constructor Details
-
AjaxPageClassComponentEventResultProcessor
public AjaxPageClassComponentEventResultProcessor(ComponentSource componentSource, @Ajax ComponentEventResultProcessor masterProcessor)
-
-
Method Details
-
processResultValue
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<Class>
- Parameters:
value
- the value returned from a method- Throws:
IOException
-