[jboss-cvs] JBoss Messaging SVN: r1553 - branches/Branch_Client_Failover_Experiment/src/etc
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Fri Nov 3 18:25:21 EST 2006
Author: clebert.suconic at jboss.com
Date: 2006-11-03 18:25:20 -0500 (Fri, 03 Nov 2006)
New Revision: 1553
Modified:
branches/Branch_Client_Failover_Experiment/src/etc/aop-messaging-client.xml
Log:
http://jira.jboss.org/jira/browse/JBMESSAGING-519 - binding AOP to failOver method
Modified: branches/Branch_Client_Failover_Experiment/src/etc/aop-messaging-client.xml
===================================================================
--- branches/Branch_Client_Failover_Experiment/src/etc/aop-messaging-client.xml 2006-11-03 12:41:49 UTC (rev 1552)
+++ branches/Branch_Client_Failover_Experiment/src/etc/aop-messaging-client.xml 2006-11-03 23:25:20 UTC (rev 1553)
@@ -156,9 +156,15 @@
<bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->createConsumerDelegate(..))">
<advice name="handleCreateConsumerDelegate" aspect="org.jboss.jms.client.container.ConsumerAspect"/>
</bind>
+ <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->failOverConsumer(..))">
+ <advice name="handleCreateConsumerDelegate" aspect="org.jboss.jms.client.container.ConsumerAspect"/>
+ </bind>
<bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->createConsumerDelegate(..))">
<advice name="handleCreateConsumerDelegate" aspect="org.jboss.jms.client.container.StateCreationAspect"/>
</bind>
+ <bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->failOverConsumer(..))">
+ <advice name="handleCreateConsumerDelegate" aspect="org.jboss.jms.client.container.StateCreationAspect"/>
+ </bind>
<bind pointcut="execution(* org.jboss.jms.client.delegate.ClientSessionDelegate->createProducerDelegate(..))">
<advice name="handleCreateProducerDelegate" aspect="org.jboss.jms.client.container.StateCreationAspect"/>
</bind>
More information about the jboss-cvs-commits
mailing list