1 /*------------------------------------------------------------------------------
 2 Name:      I_Timeout.java
 3 Project:   xmlBlaster.org
 4 Copyright: xmlBlaster.org, see xmlBlaster-LICENSE file
 5 ------------------------------------------------------------------------------*/
 6 package org.xmlBlaster.util;
 7 
 8 
 9 /**
10  * Interface you need to implement to receive timeout notifications
11  *
12  * @author xmlBlaster@marcelruff.info
13  */
14 public interface I_Timeout
15 {
16 
17    /**
18    * You will be notified about the timeout through this method.
19    * @param userData You get bounced back your userData which you passed
20    *                 with Timeout.addTimeoutListener()
21    */
22    public void timeout(Object userData);
23 }


syntax highlighted by Code2HTML, v. 0.9.1