Package org.eclipse.ecf.core.sharedobject

Examples of org.eclipse.ecf.core.sharedobject.ISharedObjectContainerConfig


    ISynchAsynchConnection conn = new SSLClient(receiver, keepAlive);
    return conn;
  }

  public static final void main(String[] args) throws Exception {
    ISharedObjectContainerConfig config = new SOContainerConfig(IDFactory.getDefault().createGUID());
    SSLClientSOContainer container = new SSLClientSOContainer(config);
    // now join group
    ID serverID = IDFactory.getDefault().createStringID(SSLServerSOContainer.getDefaultServerURL());
    container.connect(serverID, null);
    Thread.sleep(200000);
View Full Code Here


    ISynchAsynchConnection conn = new Client(receiver, keepAlive);
    return conn;
  }

  public static final void main(String[] args) throws Exception {
    ISharedObjectContainerConfig config = new SOContainerConfig(IDFactory.getDefault().createGUID());
    TCPClientSOContainer container = new TCPClientSOContainer(config);
    // now join group
    ID serverID = IDFactory.getDefault().createStringID("ecftcp://localhost:3282/server"); //$NON-NLS-1$
    container.connect(serverID, null);
    Thread.sleep(200000);
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.core.sharedobject.ISharedObjectContainerConfig

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.