Class StreamPageContentResultProcessor
- java.lang.Object
- 
- org.apache.tapestry5.internal.services.StreamPageContentResultProcessor
 
- 
- All Implemented Interfaces:
- ComponentEventResultProcessor<StreamPageContent>
 
 public class StreamPageContentResultProcessor extends java.lang.Object implements ComponentEventResultProcessor<StreamPageContent> Used to trigger the rendering of a particular page without causing a redirect to that page. The content of the page is just streamed to the client.- Since:
- 5.2.0
 
- 
- 
Constructor SummaryConstructors Constructor Description StreamPageContentResultProcessor(PageRenderRequestHandler handler, ComponentClassResolver resolver, TypeCoercer typeCoercer, RequestGlobals requestGlobals, Request request)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description voidprocessResultValue(StreamPageContent value)For a given, non-null return value from a component event method, construct and send a response.
 
- 
- 
- 
Constructor Detail- 
StreamPageContentResultProcessorpublic StreamPageContentResultProcessor(PageRenderRequestHandler handler, ComponentClassResolver resolver, TypeCoercer typeCoercer, RequestGlobals requestGlobals, Request request) 
 
- 
 - 
Method Detail- 
processResultValuepublic void processResultValue(StreamPageContent value) throws java.io.IOException Description copied from interface:ComponentEventResultProcessorFor 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 anIOOperationto do the rendering, and add the operation to theRequestas attributeTapestryConstants.RESPONSE_RENDERER. This avoids a number of issues related to theEnvironment.- Specified by:
- processResultValuein interface- ComponentEventResultProcessor<StreamPageContent>
- Parameters:
- value- the value returned from a method
- Throws:
- java.io.IOException
 
 
- 
 
-