This closes #224 on channel methods through JGroups config

This commit is contained in:
Clebert Suconic 2015-05-05 10:56:09 -04:00
commit 391db0b015
1 changed files with 10 additions and 0 deletions

View File

@ -30,6 +30,16 @@ public class ChannelBroadcastEndpointFactory implements BroadcastEndpointFactory
this.channelName = channelName; this.channelName = channelName;
} }
public JChannel getChannel()
{
return channel;
}
public String getChannelName()
{
return channelName;
}
@Override @Override
public BroadcastEndpoint createBroadcastEndpoint() throws Exception public BroadcastEndpoint createBroadcastEndpoint() throws Exception
{ {