[jboss-jira] [JBoss JIRA] Closed: (JBAS-5167) Support injection of JGroups Channel into ClusterPartition
Brian Stansberry (JIRA)
jira-events at lists.jboss.org
Wed Jan 23 16:01:21 EST 2008
[ http://jira.jboss.com/jira/browse/JBAS-5167?page=all ]
Brian Stansberry closed JBAS-5167.
----------------------------------
Resolution: Done
Example configuration:
<bean name="HAPartition" class="org.jboss.ha.framework.server.ClusterPartition">
....
<constructor>
<parameter>
<bean name="DefaultPartition-ClusterPartitionConfig" class="org.jboss.ha.framework.server.ClusterPartitionConfig">
<!-- Directly inject a channel -->
<property name="channel">
<bean name="DefaultPartition-HAPartitionChannel" class="org.jgroups.Channel">
<constructor factoryMethod="createChannel">
<factory bean="JChannelFactory"/>
<parameter class="java.lang.String">${jboss.multiplexer.stack:udp}</parameter>
</constructor>
</bean>
</property>
<!-- ClusterPartition requires a Cache for state management -->
<property name="clusteredCache"><inject bean="DefaultPartition-HAPartitionCache" property="cache"/></property>
.....
> Support injection of JGroups Channel into ClusterPartition
> ----------------------------------------------------------
>
> Key: JBAS-5167
> URL: http://jira.jboss.com/jira/browse/JBAS-5167
> Project: JBoss Application Server
> Issue Type: Feature Request
> Security Level: Public(Everyone can see)
> Components: Clustering
> Reporter: Brian Stansberry
> Assigned To: Brian Stansberry
> Fix For: JBossAS-5.0.0.Beta4
>
>
> ClusterPartition currently gets its channel by calling JChannelFactory.createMultiplexerChannel(). We need to support direct injection of the channel. This will allow users of the class to move away from the multiplexer and to shared transport channels simply by configuring cluster-beans.xml to inject a shared transport channel.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list