Package org.apache.catalina.tribes.group
Interface ExtendedRpcCallback
- 
- All Superinterfaces:
- RpcCallback
 
 public interface ExtendedRpcCallback extends RpcCallback Extension to theRpcCallbackinterface. Allows an RPC messenger to get a confirmation if the reply was sent successfully to the original sender.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description voidreplyFailed(java.io.Serializable request, java.io.Serializable response, Member sender, java.lang.Exception reason)The reply failed.voidreplySucceeded(java.io.Serializable request, java.io.Serializable response, Member sender)The reply succeeded- 
Methods inherited from interface org.apache.catalina.tribes.group.RpcCallbackleftOver, replyRequest
 
- 
 
- 
- 
- 
Method Detail- 
replyFailedvoid replyFailed(java.io.Serializable request, java.io.Serializable response, Member sender, java.lang.Exception reason)The reply failed.- Parameters:
- request- - the original message that requested the reply
- response- - the reply message to the original message
- sender- - the sender requested that reply
- reason- - the reason the reply failed
 
 - 
replySucceededvoid replySucceeded(java.io.Serializable request, java.io.Serializable response, Member sender)The reply succeeded- Parameters:
- request- - the original message that requested the reply
- response- - the reply message to the original message
- sender- - the sender requested that reply
 
 
- 
 
-