Class StreamResponseResultProcessor
-
- org.apache.tapestry5.internal.services.StreamResponseResultProcessor
-
- All Implemented Interfaces:
ComponentEventResultProcessor<StreamResponse>
public class StreamResponseResultProcessor extends implements ComponentEventResultProcessor<StreamResponse>
-
-
Constructor Summary
Constructors Constructor Description StreamResponseResultProcessor(Response response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
processResultValue(StreamResponse streamResponse)
For a given, non-null return value from a component event method, construct and send a response.
-
-
-
Constructor Detail
-
StreamResponseResultProcessor
public StreamResponseResultProcessor(Response response)
-
-
Method Detail
-
processResultValue
public void processResultValue(StreamResponse streamResponse) throws
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<StreamResponse>
- Parameters:
streamResponse
- the value returned from a method- Throws:
-
-