Package org.araneaframework.framework

Examples of org.araneaframework.framework.ContinuationManagerContext


  public OutputStream getOutputStream() throws IOException {
    return getResponse().getOutputStream();
  }
 
  public void redirect(Environment environment, final String url) throws Exception {
    ContinuationManagerContext continuationHandler =
      (ContinuationManagerContext) environment.getEntry(ContinuationManagerContext.class)
   
    // setting the continuation
    continuationHandler.runContinuationOnce(new BaseService() {
      protected void action(Path path, InputData input, OutputData output) throws Exception {
        ((ServletOutputData)output).getResponse().sendRedirect(url);
      }
    });
  }
View Full Code Here

TOP

Related Classes of org.araneaframework.framework.ContinuationManagerContext

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.