Package org.eclipse.ecf.provider.datashare.nio

Examples of org.eclipse.ecf.provider.datashare.nio.NIOChannel


  }

  protected NIOChannel createNIOChannel(ID channelId,
      IChannelListener listener, Map properties) throws ECFException {
    Assert.isNotNull(channelId, "Channel id cannot be null"); //$NON-NLS-1$
    NIOChannel channel = new IRCDatashareChannel(this, container
        .getConnectNamespace(), container.getConnectedID(), container
        .getChatRoomMessageSender(), channelId, listener);
    channels.add(channel);
    return channel;
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.provider.datashare.nio.NIOChannel

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.