Interface IRemoteCallCompleteEvent
- 
- All Superinterfaces:
- IRemoteCallEvent
 
 public interface IRemoteCallCompleteEvent extends IRemoteCallEvent Event received when remote call is complete.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description ThrowablegetException()ObjectgetResponse()Get response object.booleanhadException()Whether remote call resulted in exception.- 
Methods inherited from interface org.eclipse.ecf.remoteservice.events.IRemoteCallEventgetRequestId
 
- 
 
- 
- 
- 
Method Detail- 
getResponseObject getResponse() Get response object.- Returns:
- Object that is response to remmote call. May be null.
 
 - 
hadExceptionboolean hadException() Whether remote call resulted in exception. If returns true, then remote call ended in exception, false if no exception.- Returns:
- true if remote call ended in exception, false if no exception.
 
 - 
getExceptionThrowable getException() - Returns:
- Throwable that was exception thrown during remote call. Will
         return nullifhadException()returns false. Will be non-nullifhadException()returns true.
 
 
- 
 
-