public interface AlarmListener
This interface is implemented by a Java object that will receive alarm
notifications. An object implementing this interface can be supplied
to the AlarmManager.create method and used as the target for an alarm. When
the alarm fires then the fired method is called and the alarm firing is provided
as a parameter. By providing the alarm as a parameter, the same object
instance could be used for multiple alarms.
- See Also:
Alarm
,
AlarmManager