KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > kernel > event > ConnectionEventListener


1 package com.ubermq.kernel.event;
2
3 /**
4  * A listener for connection events.
5  */

6 public interface ConnectionEventListener
7 {
8     /**
9      * Processes a connection event, encoded in the event object.
10      *
11      * @param e a connection event
12      */

13     public void connectionEvent(ConnectionEvent e);
14 }
15
Popular Tags