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

Part Number E24391-02

weblogic.timers
Interface TimerListener

All Known Subinterfaces:
CancelTimerListener, NakedTimerListener, StopTimerListener
All Known Implementing Classes:
LeaseManager, MigratableServerService, SingletonServicesBatchManager

public interface TimerListener

This interface is implemented by those classes that require notification of expired timers. When scheduling a timer, you supply a TimerListener which is invoked by the TimerManager at the user specified time(s). The TimerListener receives a reference to the Timer that caused the listener to be invoked.

See Also:
TimerManager

Method Summary
 void timerExpired(Timer timer)
          This method is invoked by a TimerManager when a timer expires.
 

Method Detail

timerExpired

void timerExpired(Timer timer)
This method is invoked by a TimerManager when a timer expires.

Parameters:
timer - The timer that expired and caused the listener to be invoked.

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