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

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

Introduction

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

Prototype

public TcpConnectionExceptionEvent(TcpConnection connection, String connectionFactoryName, Throwable cause) 

Source Link

Usage

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

protected void publishConnectionExceptionEvent(Throwable t) {
    TcpConnectionEvent event = new TcpConnectionExceptionEvent(this, this.connectionFactoryName, t);
    doPublish(event);/*from  w  w  w . ja  v  a  2 s.  c o  m*/
}