Package org.apache.cxf.continuations
Interface ContinuationCallback
public interface ContinuationCallback
Callback that receives continuation status updates.
- 
Method SummaryModifier and TypeMethodDescriptionvoidThis method is called when the container completes writing the response to the clientvoidThis method may be called if the container detects that the client has disconnectedvoidThis method is called when the exception gets propagated to the container
- 
Method Details- 
onCompletevoid onComplete()This method is called when the container completes writing the response to the client
- 
onErrorThis 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
 
-