Package org.springframework.integration.ip.tcp

Examples of org.springframework.integration.ip.tcp.TcpInboundGateway


    return factory;
  }

  @Bean
  public TcpInboundGateway tcpInboundGateway() {
    TcpInboundGateway gateway = new TcpInboundGateway();
    gateway.setConnectionFactory(tcpNetServerConnectionFactory());
    gateway.setRequestChannel(directChannel());
    return gateway;
  }
View Full Code Here


    return new TcpNetServerConnectionFactory(9876);
  }

  @Bean
  TcpInboundGateway tcpGate() {
    TcpInboundGateway gateway = new TcpInboundGateway();
    gateway.setConnectionFactory(cf());
    gateway.setRequestChannel(requestChannel());
    return gateway;
  }
View Full Code Here

    return new TcpNetServerConnectionFactory(9876);
  }

  @Bean
  TcpInboundGateway tcpGate() {
    TcpInboundGateway gateway = new TcpInboundGateway();
    gateway.setConnectionFactory(cf());
    gateway.setRequestChannel(requestChannel());
    return gateway;
  }
View Full Code Here

TOP

Related Classes of org.springframework.integration.ip.tcp.TcpInboundGateway

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.