01: /*
02: * TimerClient.java
03: *
04: * $Author: ss150821 $
05: *
06: * $Date: 2005/11/30 11:27:23 $ $Revision: 1.3 $
07: *
08: * Copyright (c) 1998 Sun Microsystems, Inc. All Rights Reserved.
09: *
10: * Developed by SunPS and SunIR
11: */
12:
13: package com.sun.portal.rproxy.connectionhandler;
14:
15: /**
16: * This interface defines the TimerClint interface to be implemented by classes
17: * using the Timer.
18: *
19: * @author Kevin Hartig
20: */
21: public interface TimerClient {
22: public void timeOut();
23: }
|