Class AjaxComponentInstanceEventResultProcessor
- java.lang.Object
-
- org.apache.tapestry5.internal.services.AjaxComponentInstanceEventResultProcessor
-
- All Implemented Interfaces:
ComponentEventResultProcessor<Component>
public class AjaxComponentInstanceEventResultProcessor extends Object implements ComponentEventResultProcessor<Component>
Performs a partial page render based on a root component. If the component is actually a page, it will send an JSON reponse to rediret to the page.
-
-
Constructor Summary
Constructors Constructor Description AjaxComponentInstanceEventResultProcessor(RequestPageCache cache, ComponentEventResultProcessor masterProcessor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
processResultValue(Component value)
For a given, non-null return value from a component event method, construct and send a response.
-
-
-
Constructor Detail
-
AjaxComponentInstanceEventResultProcessor
public AjaxComponentInstanceEventResultProcessor(RequestPageCache cache, @Ajax ComponentEventResultProcessor masterProcessor)
-
-
Method Detail
-
processResultValue
public void processResultValue(Component value) throws IOException
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<Component>
- Parameters:
value
- the value returned from a method- Throws:
IOException
-
-