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

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

Introduction

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

Prototype

public TcpConnectionOpenEvent(TcpConnection connection, String connectionFactoryName) 

Source Link

Usage

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

protected void publishConnectionOpenEvent() {
    TcpConnectionEvent event = new TcpConnectionOpenEvent(this, this.connectionFactoryName);
    doPublish(event);/* www  .ja v a 2 s  .c o m*/
}