Esempio n. 1
0
 protected void publishConnectionCloseEvent() {
   TcpConnectionEvent event =
       new TcpConnectionEvent(this, TcpConnectionEventType.CLOSE, this.connectionFactoryName);
   doPublish(event);
 }
Esempio n. 2
0
 protected void publishConnectionExceptionEvent(Throwable t) {
   TcpConnectionEvent event = new TcpConnectionEvent(this, t, this.connectionFactoryName);
   doPublish(event);
 }
Esempio n. 3
0
 protected void publishConnectionOpenEvent() {
   TcpConnectionEvent event =
       new TcpConnectionEvent(this, TcpConnectionEventType.OPEN, this.connectionFactoryName);
   doPublish(event);
 }