Examples of TcpTransferFactory


Examples of net.solosky.maplefetion.net.tcp.TcpTransferFactory

      //这个方法是核心,将会尝试建立TCP连接HTTP连接,如果都失败,抛出异常
      //先尝试建立TCP连接
      Transfer transfer = null;
      try {
        logger.debug("Try to create Tcp default transfer...");
          this.activeFactory = new TcpTransferFactory();
          this.activeFactory.setFetionContext(this.context);
          this.activeFactory.openFactory();
          transfer = this.activeFactory.createDefaultTransfer();
          return transfer;
        } catch (TransferException e) {
View Full Code Here
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.