Uses of Interface
javax.ws.rs.container.AsyncResponse

Packages that use AsyncResponse
javax.ws.rs.container Container-specific JAX-RS API. 
org.jboss.example.jaxrs2.async   
org.jboss.resteasy.cdi.asynch This package (along with @see org.jboss.resteasy.test.cdi.asynch) tests JAX-RS and EJB asynchronous processing. 
org.jboss.resteasy.core   
org.jboss.resteasy.spi   
org.jboss.resteasy.test.async   
 

Uses of AsyncResponse in javax.ws.rs.container
 

Methods in javax.ws.rs.container with parameters of type AsyncResponse
 void TimeoutHandler.handleTimeout(AsyncResponse asyncResponse)
          Invoked when the suspended asynchronous response is about to time out.
 void ConnectionCallback.onDisconnect(AsyncResponse disconnected)
          This callback notification method is invoked in case the container detects that the remote client connection associated with the asynchronous response has been disconnected.
 void ResumeCallback.onResume(AsyncResponse resuming, Response response)
          A resume callback notification method that will be invoked when the asynchronous response is about to be resumed with a JAX-RS response instance.
 void ResumeCallback.onResume(AsyncResponse resuming, Throwable error)
          A resume callback notification method that will be invoked in case the asynchronous response is being resumed by an error (e.g.
 

Uses of AsyncResponse in org.jboss.example.jaxrs2.async
 

Methods in org.jboss.example.jaxrs2.async with parameters of type AsyncResponse
 void ChatListener.listen(AsyncResponse res)
           
 

Constructor parameters in org.jboss.example.jaxrs2.async with type arguments of type AsyncResponse
ChatListener(List<AsyncResponse> listeners)
           
ChatSpeaker(List<AsyncResponse> listeners)
           
 

Uses of AsyncResponse in org.jboss.resteasy.cdi.asynch
 

Methods in org.jboss.resteasy.cdi.asynch with parameters of type AsyncResponse
 void AsynchronousResource.asynchAsynch(AsyncResponse asyncResponse)
           
 void AsynchronousResource.asynchEJB(AsyncResponse asyncResponse)
           
 

Uses of AsyncResponse in org.jboss.resteasy.core
 

Classes in org.jboss.resteasy.core that implement AsyncResponse
 class AbstractAsynchronousResponse
           
protected  class SynchronousExecutionContext.SynchronousAsynchronousResponse
           
 

Methods in org.jboss.resteasy.core that return AsyncResponse
 AsyncResponse SynchronousExecutionContext.suspend()
           
 AsyncResponse SynchronousExecutionContext.suspend(long millis)
           
 AsyncResponse SynchronousExecutionContext.suspend(long time, TimeUnit unit)
           
 

Uses of AsyncResponse in org.jboss.resteasy.spi
 

Subinterfaces of AsyncResponse in org.jboss.resteasy.spi
 interface ResteasyAsynchronousResponse
           
 

Methods in org.jboss.resteasy.spi that return AsyncResponse
 AsyncResponse ResteasyAsynchronousContext.suspend()
           
 AsyncResponse ResteasyAsynchronousContext.suspend(long millis)
           
 AsyncResponse ResteasyAsynchronousContext.suspend(long time, TimeUnit unit)
           
 

Uses of AsyncResponse in org.jboss.resteasy.test.async
 

Methods in org.jboss.resteasy.test.async with parameters of type AsyncResponse
 void JaxrsResource.cancel(AsyncResponse response)
           
 void JaxrsResource.get(AsyncResponse response)
           
 void JaxrsResource.timeout(AsyncResponse response)
           
 



Copyright © 2013. All Rights Reserved.