com.ibm.websphere.asynchbeans
Interface AlarmManagerEvents
-
- All Superinterfaces:
- EventSourceEvents
Deprecated.Interfaces for alarms and alarm management are replaced byManagedScheduledExecutorServiceand related interfaces.
@Deprecated public interface AlarmManagerEvents extends EventSourceEvents
These are events which can be thrown by an Alarm/AlarmManager.- See Also:
javax.enterprise.concurrent.ManagedScheduledExecutorService,AlarmManager
-
-
Method Summary
Methods Modifier and Type Method and Description voidalarmThrewException(AlarmManager am, Alarm a, java.lang.Throwable exception)Deprecated.The fire method on an alarm owned by an AlarmManager threw an exception.voiddestroyed(AlarmManager am)Deprecated.The indicated alarm manager is about to be destroyed.-
Methods inherited from interface com.ibm.websphere.asynchbeans.EventSourceEvents
listenerCountChanged, listenerExceptionThrown, unexpectedException
-
-
-
-
Method Detail
-
destroyed
void destroyed(AlarmManager am)
Deprecated.The indicated alarm manager is about to be destroyed.- Parameters:
am- The AlarmManager being destroyed.
-
alarmThrewException
void alarmThrewException(AlarmManager am, Alarm a, java.lang.Throwable exception)
Deprecated.The fire method on an alarm owned by an AlarmManager threw an exception.- Parameters:
am- The owning AlarmManagera- The alarm which threw the exceptionexception- The exception.
-
-