Example usage for org.springframework.integration.ip.tcp.connection TcpConnectionCloseEvent TcpConnectionCloseEvent

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

Introduction

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

Prototype

public TcpConnectionCloseEvent(TcpConnection connection, String connectionFactoryName) 

Source Link

Usage

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

protected void publishConnectionCloseEvent() {
    TcpConnectionEvent event = new TcpConnectionCloseEvent(this, this.connectionFactoryName);
    doPublish(event);/*w w  w. j a v  a2 s .  c o m*/
}