Uses of Class
org.apache.tapestry.request.ResponseOutputStream

Packages that use ResponseOutputStream
org.apache.tapestry.asset Implementations of IAsset, as well as the AssetExternalizer, used to handle private assets. 
org.apache.tapestry.engine Implementations of the IEngine interface, including the standard implementation: BaseEngine
org.apache.tapestry.services Interfaces for Tapestry-related HiveMind services. 
org.apache.tapestry.services.impl   
org.apache.tapestry.wml Classes and components for main elements of the Wireless Markup Language (WML 1.2). 
 

Uses of ResponseOutputStream in org.apache.tapestry.asset
 

Methods in org.apache.tapestry.asset with parameters of type ResponseOutputStream
 void AssetService.service(IRequestCycle cycle, ResponseOutputStream output)
          Retrieves a resource from the classpath and returns it to the client in a binary output stream.
 

Uses of ResponseOutputStream in org.apache.tapestry.engine
 

Methods in org.apache.tapestry.engine with parameters of type ResponseOutputStream
 void RestartService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void ResetService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void PageService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void IEngineService.service(IRequestCycle cycle, ResponseOutputStream output)
          Perform the service, interpreting the URL (from the HttpServletRequest) responding appropriately, and rendering a result page.
 void HomeService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void ExternalService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void DirectService.service(IRequestCycle cycle, ResponseOutputStream output)
           
 void ActionService.service(IRequestCycle cycle, ResponseOutputStream output)
           
protected  void AbstractEngine.activateExceptionPage(IRequestCycle cycle, ResponseOutputStream output, java.lang.Throwable cause)
          Sets the Exception page's exception property, then renders the Exception page.
protected  void AbstractEngine.redirect(java.lang.String pageName, IRequestCycle cycle, ResponseOutputStream out, org.apache.hivemind.ApplicationRuntimeException exception)
          Invoked, typically, when an exception occurs while servicing the request.
 void AbstractEngine.renderResponse(IRequestCycle cycle, ResponseOutputStream output)
          Delegates to ResponseRenderer.renderResponse(IRequestCycle, ResponseOutputStream).
protected  void AbstractEngine.handlePageRedirectException(PageRedirectException ex, IRequestCycle cycle, ResponseOutputStream output)
          Handles PageRedirectExceptionwhich involves executing IPage.validate(IRequestCycle)on the target page (of the exception), until either a loop is found, or a page succesfully validates and can be activated.
protected  void AbstractEngine.handleStaleLinkException(StaleLinkException ex, IRequestCycle cycle, ResponseOutputStream output)
          Invoked by AbstractEngine.service(RequestContext)if a StaleLinkExceptionis thrown by the service.
protected  void AbstractEngine.handleStaleSessionException(StaleSessionException ex, IRequestCycle cycle, ResponseOutputStream output)
          Invoked by AbstractEngine.service(RequestContext)if a StaleSessionExceptionis thrown by the service.
 

Uses of ResponseOutputStream in org.apache.tapestry.services
 

Methods in org.apache.tapestry.services with parameters of type ResponseOutputStream
 void ResponseRenderer.renderResponse(IRequestCycle cycle, ResponseOutputStream output)
          Renders the reponse, using the current active page defined by the request cycle.
 

Uses of ResponseOutputStream in org.apache.tapestry.services.impl
 

Methods in org.apache.tapestry.services.impl with parameters of type ResponseOutputStream
 void ResponseRendererImpl.renderResponse(IRequestCycle cycle, ResponseOutputStream output)
           
 

Uses of ResponseOutputStream in org.apache.tapestry.wml
 

Methods in org.apache.tapestry.wml with parameters of type ResponseOutputStream
protected  void WMLEngine.activateExceptionPage(IRequestCycle cycle, ResponseOutputStream output, java.lang.Throwable cause)