[jboss-dev-forums] [Design of Messaging on JBoss (Messaging/JBoss)] - Re: JGroups Protocol Stack Configuration & Shunning Behavior
jhowell@redhat.com
do-not-reply at jboss.com
Wed Aug 27 12:26:53 EDT 2008
The only two places I see it are in /jms/src/main/org/jboss/jms/serverless/GroupConnection.java
Which just logs
public void channelShunned() {
log.debug("channelShunned()");
}
and
/jms/src/main/org/jboss/jms/client/p2p/P2PConnectionDelegate.java
public void channelShunned()
{
if (this.exceptionListener != null)
{
this.exceptionListener.onException(new JMSException("We were shunned."));
}
}
which I don't think are used in the clustering of the server anyway. Maybe Tim can confirm this.
But I don't find a listener that implements channelShunned in the jbm server.
Jay:)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4172864#4172864
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4172864
More information about the jboss-dev-forums
mailing list