blob: e01d15bef5a4e2178d65a156968cc7afe77bdc77 [file] [log] [blame]
/****************************************************************************
* Copyright (c) 2004 Composent, Inc.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors: Composent, Inc. - initial API and implementation
*
* SPDX-License-Identifier: EPL-2.0
*****************************************************************************/
package org.eclipse.ecf.tutorial.datashare;
import java.util.HashMap;
import org.eclipse.ecf.core.ContainerFactory;
import org.eclipse.ecf.core.IContainer;
import org.eclipse.ecf.core.identity.ID;
import org.eclipse.ecf.core.identity.IDFactory;
import org.eclipse.ecf.core.util.ECFException;
import org.eclipse.ecf.datashare.IChannel;
import org.eclipse.ecf.datashare.IChannelContainerAdapter;
import org.eclipse.ecf.datashare.IChannelListener;
import org.eclipse.ecf.datashare.events.IChannelEvent;
public class DsClient1 {
protected static final String CONTAINER_TYPE = "ecf.generic.channel";
protected static final String TARGET_SERVER = "ecftcp://localhost:3282/server";
IContainer container = null;
IChannel channel = null;
protected IChannel createChannel(IContainer container) throws ECFException {
IChannelContainerAdapter channelContainer = (IChannelContainerAdapter) container.getAdapter(IChannelContainerAdapter.class);
if (channelContainer == null) throw new NullPointerException("cannot get channel container adapter");
ID channelID = IDFactory.getDefault().createID(channelContainer.getChannelNamespace(), "channel1");
IChannelListener channelListener = new IChannelListener() {
public void handleChannelEvent(IChannelEvent event) {
System.out.println("handleChannelEvent("+event+")");
}};
return channelContainer.createChannel(channelID, channelListener, new HashMap());
}
public void createAndConnect() throws ECFException {
// create container instance from ECF ContainerFactory
container = ContainerFactory.getDefault().createContainer(CONTAINER_TYPE);
// create channel
channel = createChannel(container);
// create target ID
ID targetID = IDFactory.getDefault().createID(container.getConnectNamespace(),TARGET_SERVER);
// connect container to target
container.connect(targetID, null);
}
public void sendData() throws ECFException {
for(int i=0; i < 5; i++ ) {
channel.sendMessage("hello".getBytes());
}
}
}