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