Package com.ibm.websphere.sip
Interface AsynchronousWorkListener
- 
 public interface AsynchronousWorkListenerThis listener will receive notification on a result of the asynchronous work execution.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonCompleted(java.io.Serializable result)This method will be called when the asynchronous work is completed.voidonFailed(int reasonCode, java.lang.String reason)This method will be called when the response to the asynchronous work request on the receiving container returns an error.
 
- 
- 
- 
Method Detail- 
onCompletedvoid onCompleted(java.io.Serializable result) This method will be called when the asynchronous work is completed.- Parameters:
- result-
 
 - 
onFailedvoid onFailed(int reasonCode, java.lang.String reason)This method will be called when the response to the asynchronous work request on the receiving container returns an error.- Parameters:
- reasonCode- int
- reason- String
 
 
- 
 
-