Example usage for org.springframework.integration.ip.tcp.connection AbstractClientConnectionFactory stop

List of usage examples for org.springframework.integration.ip.tcp.connection AbstractClientConnectionFactory stop

Introduction

In this page you can find the example usage for org.springframework.integration.ip.tcp.connection AbstractClientConnectionFactory stop.

Prototype

@Override
public void stop() 

Source Link

Document

Stops the server.

Usage

From source file:org.springframework.integration.ip.tcp.connection.FailoverClientConnectionFactory.java

@Override
public void stop() {
    this.setActive(false);
    for (AbstractClientConnectionFactory factory : this.factories) {
        factory.stop();
    }//ww  w  . j a va 2s .  co m
}