Interface ServiceContext<T>
-
- All Known Subinterfaces:
WorkflowExecutionServiceContext
- All Known Implementing Classes:
ServiceThreadBase,WorkflowExecutionServiceThread
public interface ServiceContext<T>Context about the service operation
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TgetResultObject()java.lang.ThrowablegetThrowable()booleanisAborted()booleanisSuccessful()
-
-
-
Method Detail
-
isSuccessful
boolean isSuccessful()
- Returns:
- true if successful
-
getThrowable
java.lang.Throwable getThrowable()
- Returns:
- thrown exception
-
isAborted
boolean isAborted()
- Returns:
- true if aborted
-
getResultObject
T getResultObject()
- Returns:
- result object
-
-