com.ibm.websphere.sca
Interface ServiceCallback
- public interface ServiceCallback
Field Summary
Modifier and Type | Field and Description |
---|---|
|
COPYRIGHT
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
onInvokeResponse(Ticket ticket,java.lang.Object output,java.lang.Exception exception)
Callback method invoked by the SCA runtime to pass an asynchronous response to a service component.
|
Field Detail
COPYRIGHT
- static final java.lang.String COPYRIGHT
See Also:
Method Detail
onInvokeResponse
- void onInvokeResponse(Ticket ticket,
- java.lang.Object output,
- java.lang.Exception exception)
Callback method invoked by the SCA runtime to pass an asynchronous response to a service component.
Parameters:
ticket
- The ticket identifying the asynchronous invocation, initially returned by the invokeAsyncWithCallback() method. output
- The business data returned by the target business operation. exception
- Any exception thrown from the target business operation.