Interface IRemoteCallCompleteEvent
- All Superinterfaces:
IRemoteCallEvent
Event received when remote call is complete.
-
Method Summary
Modifier and TypeMethodDescriptionGet response object.boolean
Whether remote call resulted in exception.Methods inherited from interface org.eclipse.ecf.remoteservice.events.IRemoteCallEvent
getRequestId
-
Method Details
-
getResponse
Object getResponse()Get response object.- Returns:
- Object that is response to remmote call. May be
null
.
-
hadException
boolean 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.
-
getException
Throwable getException()- Returns:
- Throwable that was exception thrown during remote call. Will
return
null
ifhadException()
returns false. Will be non-null
ifhadException()
returns true.
-