From 471a23dbe35f1389a9fd43ee409ac4bb03d995c4 Mon Sep 17 00:00:00 2001 From: slaws Date: Fri, 3 Dec 2010 15:22:31 +0000 Subject: TUSCANY-3801 - Update the invocation chain infrastructure, and the enpoints/endpointreferences that call it, to allow async response messages to be processed backwards along the response part of the chain independently of the forward message processing. git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1041866 13f79535-47bb-0310-9956-ffa450edef68 --- .../tuscany/sca/core/invocation/impl/InvocationChainImplTestCase.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'sca-java-2.x/trunk/modules/core/src/test') diff --git a/sca-java-2.x/trunk/modules/core/src/test/java/org/apache/tuscany/sca/core/invocation/impl/InvocationChainImplTestCase.java b/sca-java-2.x/trunk/modules/core/src/test/java/org/apache/tuscany/sca/core/invocation/impl/InvocationChainImplTestCase.java index 1302bed681..38306317b4 100644 --- a/sca-java-2.x/trunk/modules/core/src/test/java/org/apache/tuscany/sca/core/invocation/impl/InvocationChainImplTestCase.java +++ b/sca-java-2.x/trunk/modules/core/src/test/java/org/apache/tuscany/sca/core/invocation/impl/InvocationChainImplTestCase.java @@ -38,7 +38,7 @@ public class InvocationChainImplTestCase { @Test public void testInsertAtEnd() throws Exception { Operation op = newOperation("foo"); - InvocationChain chain = new InvocationChainImpl(op, op, true, new PhaseManager(new DefaultExtensionPointRegistry())); + InvocationChain chain = new InvocationChainImpl(op, op, true, new PhaseManager(new DefaultExtensionPointRegistry()), false); Interceptor inter2 = new MockInterceptor(); Interceptor inter1 = new MockInterceptor(); chain.addInterceptor(inter1); @@ -51,7 +51,7 @@ public class InvocationChainImplTestCase { @Test public void testAddByPhase() throws Exception { Operation op = newOperation("foo"); - InvocationChain chain = new InvocationChainImpl(op, op, false, new PhaseManager(new DefaultExtensionPointRegistry())); + InvocationChain chain = new InvocationChainImpl(op, op, false, new PhaseManager(new DefaultExtensionPointRegistry()), false); Interceptor inter1 = new MockInterceptor(); Interceptor inter2 = new MockInterceptor(); Interceptor inter3 = new MockInterceptor(); -- cgit v1.2.3