Package tests

Source Code of tests.Disconnect

package tests;

import com.ib.client.EClientSocket;

public class Disconnect extends ApiCallback {
 
  public Disconnect() {
    EClientSocket connection = new EClientSocket(this);
    connection.eConnect("dev19", 7496, 0);
    connection.eDisconnect();
  }

  /**
   * @param args
   */
  public static void main(String[] args) {
    new Disconnect();
  }

}
TOP

Related Classes of tests.Disconnect

TOP
Copyright © 2018 www.massapi.com. 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.