Package org.apache.cxf.continuations
Interface ContinuationCallback
- 
 public interface ContinuationCallbackCallback that receives continuation status updates.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonComplete()This method is called when the container completes writing the response to the clientvoidonDisconnect()This method may be called if the container detects that the client has disconnectedvoidonError(Throwable error)This method is called when the exception gets propagated to the container
 
- 
- 
- 
Method Detail- 
onCompletevoid onComplete() This method is called when the container completes writing the response to the client
 - 
onErrorvoid onError(Throwable error) This method is called when the exception gets propagated to the container- Parameters:
- error- the propagated exception instance
 
 - 
onDisconnectvoid onDisconnect() This method may be called if the container detects that the client has disconnected
 
- 
 
-