Class: javax.management.timer.Timer
- public class Timer
- extends NotificationBroadcasterSupport
- implements TimerMBean, MBeanRegistration
This class manages a list of dated timer notifications.
A method allows users to add/remove as many notifications as required.
When a timer notification is emitted by the timer and becomes obsolete,
it is automatically removed from the list of timer notifications.
Additional timer notifications can be added into regularly repeating notifications.
Note:
- When sending timer notifications, the timer updates the notification sequence number irrespective of the notification type.
- The timer service relies on the system date of the host where the
Timerclass is loaded. Listeners may receive untimely notifications if their host has a different system date. To avoid such problems, synchronize the system date of all host machines where timing is needed. - The default behavior for periodic notifications is fixed-delay execution, as specified in java.util.Timer. In order to use fixed-rate execution, use the overloaded javax.management.timer.Timer.addNotification(java.lang.String, java.lang.String, java.lang.Object, java.util.Date, long, long, boolean) method.
- Notification listeners are potentially all executed in the same thread. Therefore, they should execute rapidly to avoid holding up other listeners or perturbing the regularity of fixed-delay executions. See javax.management.NotificationBroadcasterSupport.
Inheritance
Superclass tree:- java.lang.Object
- javax.management.NotificationBroadcasterSupport
- javax.management.timer.Timer
Methods
-
Timertop
public Timer()Default constructor. -
addNotificationtop
public synchronized Integer addNotification(String type, String message, Object userData, Date date) throws IllegalArgumentExceptionCreates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and a null period and number of occurrences.The timer notification will be handled once at the specified date.
If the timer notification to be inserted has a date that is before the current date, the method behaves as if the specified date were the current date and the notification is delivered immediately.
- Specified by:
- addNotification from TimerMBean
-
addNotificationtop
public synchronized Integer addNotification(String type, String message, Object userData, Date date, long period) throws IllegalArgumentExceptionCreates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date and period and a null number of occurrences.The timer notification will repeat continuously using the timer period using a fixed-delay execution scheme, as specified in java.util.Timer. In order to use a fixed-rate execution scheme, use javax.management.timer.Timer.addNotification(java.lang.String, java.lang.String, java.lang.Object, java.util.Date, long, long, boolean) instead.
If the timer notification to be inserted has a date that is before the current date, the method behaves as if the specified date were the current date. The first notification is delivered immediately and the subsequent ones are spaced as specified by the period parameter.
- Specified by:
- addNotification from TimerMBean
-
addNotificationtop
public synchronized Integer addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences) throws IllegalArgumentExceptionCreates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.If the timer notification to be inserted has a date that is before the current date, the method behaves as if the specified date were the current date.
For once-off notifications, the notification is delivered immediately.
For periodic notifications, the first notification is delivered immediately and the subsequent ones are spaced as specified by the period parameter.Note that once the timer notification has been added into the list of notifications, its associated date, period and number of occurrences cannot be updated.
In the case of a periodic notification, uses a fixed-delay execution scheme, as specified in java.util.Timer. In order to use a fixed-rate execution scheme, use javax.management.timer.Timer.addNotification(java.lang.String, java.lang.String, java.lang.Object, java.util.Date, long, long, boolean) instead.
- Specified by:
- addNotification from TimerMBean
-
addNotificationtop
public synchronized Integer addNotification(String type, String message, Object userData, Date date, long period, long nbOccurences, boolean fixedRate) throws IllegalArgumentExceptionCreates a new timer notification with the specifiedtype,messageanduserDataand inserts it into the list of notifications with a given date, period and number of occurrences.If the timer notification to be inserted has a date that is before the current date, the method behaves as if the specified date were the current date.
For once-off notifications, the notification is delivered immediately.
For periodic notifications, the first notification is delivered immediately and the subsequent ones are spaced as specified by the period parameter.Note that once the timer notification has been added into the list of notifications, its associated date, period and number of occurrences cannot be updated.
In the case of a periodic notification, the value of parameter fixedRate is used to specify the execution scheme, as specified in java.util.Timer.
- Specified by:
- addNotification from TimerMBean
-
getAllNotificationIDstop
Gets all timer notification identifiers registered into the list of notifications.- Specified by:
- getAllNotificationIDs from TimerMBean
-
getDatetop
Gets a copy of the date associated to a timer notification.- Specified by:
- getDate from TimerMBean
-
getFixedRatetop
Gets a copy of the flag indicating whether a periodic notification is executed at fixed-delay or at fixed-rate.- Specified by:
- getFixedRate from TimerMBean
-
getNbNotificationstop
public int getNbNotifications()Gets the number of timer notifications registered into the list of notifications.- Specified by:
- getNbNotifications from TimerMBean
-
getNbOccurencestop
Gets a copy of the remaining number of occurrences associated to a timer notification.- Specified by:
- getNbOccurences from TimerMBean
-
getNotificationIDstop
Gets all the identifiers of timer notifications corresponding to the specified type.- Specified by:
- getNotificationIDs from TimerMBean
-
getNotificationInfotop
public synchronized MBeanNotificationInfo[] getNotificationInfo()Returns an array indicating, for each notification this MBean may send, the name of the Java class of the notification and the notification type.
It is not illegal for the MBean to send notifications not described in this array. However, some clients of the MBean server may depend on the array being complete for their correct functioning.
- Specified by:
- getNotificationInfo from NotificationBroadcaster
- Override hierarchy:
- getNotificationInfo from NotificationBroadcasterSupport
-
getNotificationMessagetop
Gets the timer notification detailed message corresponding to the specified identifier.- Specified by:
- getNotificationMessage from TimerMBean
-
getNotificationTypetop
Gets the timer notification type corresponding to the specified identifier.- Specified by:
- getNotificationType from TimerMBean
-
getNotificationUserDatatop
Gets the timer notification user data object corresponding to the specified identifier.- Specified by:
- getNotificationUserData from TimerMBean
-
getPeriodtop
Gets a copy of the period (in milliseconds) associated to a timer notification.- Specified by:
- getPeriod from TimerMBean
-
getSendPastNotificationstop
public boolean getSendPastNotifications()Gets the flag indicating whether or not the timer sends past notifications.
The default value of the past notifications sending on/off flag isfalse.- Specified by:
- getSendPastNotifications from TimerMBean
-
isActivetop
public boolean isActive()- Specified by:
- isActive from TimerMBean
-
isEmptytop
public boolean isEmpty()Tests whether the list of timer notifications is empty.- Specified by:
- isEmpty from TimerMBean
-
postDeregistertop
public void postDeregister()Allows the timer MBean to perform any operations needed after having been unregistered by the MBean server.Not used in this context.
- Specified by:
- postDeregister from MBeanRegistration
-
postRegistertop
public void postRegister(Boolean registrationDone)Allows the timer MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed.Not used in this context.
- Specified by:
- postRegister from MBeanRegistration
-
preDeregistertop
public void preDeregister() throws ExceptionAllows the timer MBean to perform any operations it needs before being unregistered by the MBean server.Stops the timer.
- Specified by:
- preDeregister from MBeanRegistration
-
preRegistertop
Allows the timer MBean to perform any operations it needs before being registered in the MBean server.Not used in this context.
- Specified by:
- preRegister from MBeanRegistration
-
removeAllNotificationstop
public synchronized void removeAllNotifications()Removes all the timer notifications from the list of notifications and resets the counter used to update the timer notification identifiers.- Specified by:
- removeAllNotifications from TimerMBean
-
removeNotificationtop
public synchronized void removeNotification(Integer id) throws InstanceNotFoundExceptionRemoves the timer notification corresponding to the specified identifier from the list of notifications.- Specified by:
- removeNotification from TimerMBean
-
removeNotificationstop
public synchronized void removeNotifications(String type) throws InstanceNotFoundExceptionRemoves all the timer notifications corresponding to the specified type from the list of notifications.- Specified by:
- removeNotifications from TimerMBean
-
setSendPastNotificationstop
public void setSendPastNotifications(boolean value)Sets the flag indicating whether the timer sends past notifications or not.
The default value of the past notifications sending on/off flag isfalse.- Specified by:
- setSendPastNotifications from TimerMBean
-
starttop
public synchronized void start()Starts the timer.If there is one or more timer notifications before the time in the list of notifications, the notification is sent according to the
sendPastNotificationsflag and then, updated according to its period and remaining number of occurrences. If the timer notification date remains earlier than the current date, this notification is just removed from the list of notifications.- Specified by:
- start from TimerMBean
-
stoptop
public synchronized void stop()Stops the timer.- Specified by:
- stop from TimerMBean
Fields
-
ONE_DAY
public static final long ONE_DAY = 86400000Number of milliseconds in one day. Useful constant for theaddNotificationmethod. -
ONE_HOUR
public static final long ONE_HOUR = 3600000Number of milliseconds in one hour. Useful constant for theaddNotificationmethod. -
ONE_MINUTE
public static final long ONE_MINUTE = 60000Number of milliseconds in one minute. Useful constant for theaddNotificationmethod. -
ONE_SECOND
public static final long ONE_SECOND = 1000Number of milliseconds in one second. Useful constant for theaddNotificationmethod. -
ONE_WEEK
public static final long ONE_WEEK = 604800000Number of milliseconds in one week. Useful constant for theaddNotificationmethod.
