summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/trunk/modules/core-spi/src/main
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-12-09 11:56:11 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-12-09 11:56:11 +0000
commit21c4fe09a85c35932b3240f3a4141849e80496da (patch)
tree1a3a6d9cb787b42995551fcde9715d7cb1a3cf47 /sca-java-2.x/trunk/modules/core-spi/src/main
parent8d8b0bab043fad2f4773c40cff8c2a1e6d935df6 (diff)
TUSCANY-3801 - Make the async invoker creation signature more consistent with the invoke creation signature
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1043910 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-java-2.x/trunk/modules/core-spi/src/main')
-rw-r--r--sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/provider/ImplementationAsyncProvider.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/provider/ImplementationAsyncProvider.java b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/provider/ImplementationAsyncProvider.java
index 1ddf015568..2941483ede 100644
--- a/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/provider/ImplementationAsyncProvider.java
+++ b/sca-java-2.x/trunk/modules/core-spi/src/main/java/org/apache/tuscany/sca/provider/ImplementationAsyncProvider.java
@@ -45,13 +45,12 @@ public interface ImplementationAsyncProvider extends ImplementationProvider {
* createInvoker is that the Endpoint is passed in so that the invoker can
* engineer the async response
*
- * @param endpoint the endoint at the head of this invocation chain
* @param service The component service
* @param operation The operation that the interceptor will handle
* @return An invoker that handles the invocation logic, null should be
* returned if no invoker is required
*/
- InvokerAsyncRequest createAsyncInvoker(Endpoint endpoint, RuntimeComponentService service, Operation operation);
+ InvokerAsyncRequest createAsyncInvoker(RuntimeComponentService service, Operation operation);
/**
* TUSCANY-3801