fixed multicast inheritance

git-svn-id: https://svn.apache.org/repos/asf/incubator/activemq/trunk@397392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alan Cabrera 2006-04-27 04:50:45 +00:00
parent 25a50630ed
commit 0cacae1f04
1 changed files with 2 additions and 1 deletions

View File

@ -22,13 +22,14 @@ import java.net.MulticastSocket;
import java.net.URI;
import org.apache.activeio.packet.sync.SyncChannel;
import org.apache.activeio.packet.sync.SyncChannelFactory;
import org.apache.activeio.packet.sync.SyncChannelServer;
/**
* @version $Revision: $ $Date: $
*/
public class MulticastSocketSyncChannelFactory {
public class MulticastSocketSyncChannelFactory implements SyncChannelFactory {
public SyncChannel openSyncChannel(URI groupURI) throws IOException {
if (groupURI == null) throw new IllegalArgumentException("group URI cannot be null");