Oracle Fusion Middleware
Oracle WebLogic Server API Reference
12c Release 1 (12.1.1)

Part Number E24391-02

weblogic.timers
Interface CancelTimerListener

All Superinterfaces:
TimerListener

public interface CancelTimerListener
extends TimerListener

This interface is implemented by those classes that require notification of stopped timers. When scheduling a timer, you supply a TimerListener which is invoked by the TimerManager at the user specified time(s). If a TimerListener also implements this interface, then the timerStopped method is called when its TimerManager is stopped.

See Also:
TimerManager

Method Summary
 void timerCancelled(Timer timer)
          If a timer is cancelled and its TimerListener also implements this interface, then the timerCancelled method for that listener is invoked.
 
Methods inherited from interface weblogic.timers.TimerListener
timerExpired
 

Method Detail

timerCancelled

void timerCancelled(Timer timer)
If a timer is cancelled and its TimerListener also implements this interface, then the timerCancelled method for that listener is invoked. invokes this interface. method for all TimerListeners that also implement this interface.

Parameters:
timer - The timer that is being cancelled

Copyright 1996, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Oracle WebLogic Server API Reference
12c Release 1 (12.1.1)

Part Number E24391-02