|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Object
|
+--javax.management.NotificationBroadcasterSupport
|
+--javax.management.timer.Timer
Provides the implementation of the timer MBean. The timer MBean sends out an alarm at a specified time that wakes up all the listeners registered to receive timer notifications.
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:
addNotification method is called
are ignored, irrespective of the sendPastNotifications flag.
Timer class 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.
Timer. In order to use fixed-rate execution, use the
overloaded addNotification(String, String, Object, Date, long, long, boolean) method.
NotificationBroadcasterSupport.
| Constructor Summary | |
Timer()
|
|
| Method Summary | |
java.lang.Integer |
addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date)
Creates a new timer notification with the specified type, message
and userData and inserts it into the list of notifications with a given date
and a null period and number of occurences.
|
java.lang.Integer |
addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period)
Creates a new timer notification with the specified type, message
and userData and inserts it into the list of notifications with a given date
and period and a null number of occurences.
|
java.lang.Integer |
addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period,
long nbOccurences)
add a notification to the Timer |
java.lang.Integer |
addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period,
long nbOccurences,
boolean fixedRate)
Creates a new timer notification with the specified type, message
and userData and inserts it into the list of notifications with a given date,
period and number of occurences.
|
java.util.Vector |
getAllNotificationIDs()
Gets all timer notification identifiers registered into the list of notifications. |
java.util.Date |
getDate(java.lang.Integer id)
Gets a copy of the date associated to a timer notification. |
java.lang.Boolean |
getFixedRate(java.lang.Integer id)
Gets a copy of the flag indicating whether a peridic notification is executed at fixed-delay or at fixed-rate. |
int |
getNbNotifications()
Gets the number of timer notifications registered into the list of notifications. |
java.lang.Long |
getNbOccurences(java.lang.Integer id)
Gets a copy of the remaining number of occurences associated to a timer notification. |
java.util.Vector |
getNotificationIDs(java.lang.String type)
Gets all the identifiers of timer notifications corresponding to the specified type. |
MBeanNotificationInfo[] |
getNotificationInfo()
Returns a NotificationInfo object contaning the name of the Java class of the notification and the notification types sent. |
java.lang.String |
getNotificationMessage(java.lang.Integer id)
Gets the timer notification detailed message corresponding to the specified identifier. |
java.lang.String |
getNotificationType(java.lang.Integer id)
Gets the timer notification type corresponding to the specified identifier. |
java.lang.Object |
getNotificationUserData(java.lang.Integer id)
Gets the timer notification user data object corresponding to the specified identifier. |
java.lang.Long |
getPeriod(java.lang.Integer id)
Gets a copy of the period (in milliseconds) associated to a timer notification. |
boolean |
getSendPastNotifications()
Gets the flag indicating whether or not the timer sends past notifications. |
boolean |
isActive()
Tests whether the timer MBean is active. |
boolean |
isEmpty()
Tests whether the list of timer notifications is empty. |
void |
postDeregister()
Allows the MBean to perform any operations needed after having been de-registered in the MBean server. |
void |
postRegister(java.lang.Boolean boolean1)
Allows the MBean to perform any operations needed after having been registered in the MBean server or after the registration has failed. |
void |
preDeregister()
Allows the MBean to perform any operations it needs before being de-registered by the MBean server. |
ObjectName |
preRegister(MBeanServer mbeanserver,
ObjectName objectname)
Allows the MBean to perform any operations it needs before being registered in the MBean server. |
void |
removeAllNotifications()
Removes all the timer notifications from the list of notifications and resets the counter used to update the timer notification identifiers. |
void |
removeNotification(java.lang.Integer id)
Removes the timer notification corresponding to the specified identifier from the list of notifications. |
void |
removeNotifications(java.lang.String type)
Removes all the timer notifications corresponding to the specified type from the list of notifications. |
void |
setSendPastNotifications(boolean flag)
Sets the flag indicating whether the timer sends past notifications or not. |
void |
start()
Starts the timer. |
void |
stop()
Stops the timer. |
| Methods inherited from class javax.management.NotificationBroadcasterSupport |
addNotificationListener, handleNotification, removeNotificationListener, removeNotificationListener, sendNotification |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public Timer()
| Method Detail |
public ObjectName preRegister(MBeanServer mbeanserver,
ObjectName objectname)
throws java.lang.Exception
MBeanRegistrationpreRegister in interface MBeanRegistrationjavax.management.MBeanRegistrationserver - The MBean server in which the MBean will be registered.name - The object name of the MBean.java.lang.Exception - This exception should be caught by the MBean server and re-thrown
as an MBeanRegistrationException.public void postRegister(java.lang.Boolean boolean1)
MBeanRegistrationpostRegister in interface MBeanRegistrationjavax.management.MBeanRegistrationregistrationDone - Indicates whether or not the MBean has been successfully registered in
the MBean server. The value false means that the registration phase has failed.
public void preDeregister()
throws java.lang.Exception
MBeanRegistrationpreDeregister in interface MBeanRegistrationjavax.management.MBeanRegistrationjava.lang.Exception - This exception should be caught by the MBean server and re-thrown
as an MBeanRegistrationException.public void postDeregister()
MBeanRegistrationpostDeregister in interface MBeanRegistrationpublic void start()
TimerMBean
If there is one or more timer notifications before the time in the list of notifications, the notification
is sent according to the sendPastNotifications flag and then, updated
according to its period and remaining number of occurences.
If the timer notification date remains earlier than the current date, this notification is just removed
from the list of notifications.
start in interface TimerMBeanpublic void stop()
TimerMBeanstop in interface TimerMBean
public java.lang.Integer addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period,
long nbOccurences)
throws java.lang.IllegalArgumentException
addNotification in interface TimerMBeantype - The notification type string.message - The notification¡¯s detailed message string.userData - The notification¡¯s user data object.date - The date when the notification will occur. The Timer class includes
integer constants for expressing durations in milliseconds, which can then be
used to doCreate java.util.Date objects.period - The interval in milliseconds between notification occurrences.
Repeating notifications are not enabled if this parameter is zero or null.nbOccurences - The total number of times that the notification will occur. If
the value of this parameter is zero or is not defined (null), and if the period is
not zero or null, then the notification will repeat indefinitely.java.lang.IllegalArgumentException -
public java.lang.Integer addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period)
throws java.lang.IllegalArgumentException
TimerMBeantype, message
and userData and inserts it into the list of notifications with a given date
and period and a null number of occurences.
The timer notification will repeat continuously using the timer period using a fixed-delay
execution scheme, as specified in Timer. In order to use a fixed-rate
execution scheme, use TimerMBean.addNotification(String, String, Object, 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.
addNotification in interface TimerMBeanjavax.management.timer.TimerMBeantype - The timer notification type.message - The timer notification detailed message.userData - The timer notification user data object.date - The date when the notification occurs.period - The period of the timer notification (in milliseconds).java.lang.IllegalArgumentException - The period is negative or
the date notification is before the current date.
public java.lang.Integer addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date)
throws java.lang.IllegalArgumentException
TimerMBeantype, message
and userData and inserts it into the list of notifications with a given date
and a null period and number of occurences.
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.
addNotification in interface TimerMBeanjavax.management.timer.TimerMBeantype - The timer notification type.message - The timer notification detailed message.userData - The timer notification user data object.date - The date when the notification occurs.java.lang.IllegalArgumentException - The date notification is before the current date.
public java.lang.Integer addNotification(java.lang.String type,
java.lang.String message,
java.lang.Object userData,
java.util.Date date,
long period,
long nbOccurences,
boolean fixedRate)
throws java.lang.IllegalArgumentException
TimerMBeantype, message
and userData and inserts it into the list of notifications with a given date,
period and number of occurences.
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 occurences 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 Timer.
addNotification in interface TimerMBeanjavax.management.timer.TimerMBeantype - The timer notification type.message - The timer notification detailed message.userData - The timer notification user data object.date - The date when the notification occurs.period - The period of the timer notification (in milliseconds).nbOccurences - The total number the timer notification will be emitted.fixedRate - If true and if the notification is periodic, the notification
is scheduled with a fixed-rate execution scheme. If
false and if the notification is periodic, the notification
is scheduled with a fixed-delay execution scheme. Ignored if the
notification is not periodic.java.lang.IllegalArgumentException - The period or the number of occurences is negativeTimerMBean.addNotification(String, String, Object, Date, long, long)
public void removeNotification(java.lang.Integer id)
throws InstanceNotFoundException
TimerMBeanremoveNotification in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.InstanceNotFoundException - The specified identifier does not correspond to any timer notification
in the list of notifications of this timer MBean.
public void removeNotifications(java.lang.String type)
throws InstanceNotFoundException
TimerMBeanremoveNotifications in interface TimerMBeanjavax.management.timer.TimerMBeantype - The timer notification type.InstanceNotFoundException - The specified type does not correspond to any timer notification
in the list of notifications of this timer MBean.public void removeAllNotifications()
TimerMBeanremoveAllNotifications in interface TimerMBeanpublic int getNbNotifications()
TimerMBeangetNbNotifications in interface TimerMBeanjavax.management.timer.TimerMBeanpublic java.util.Vector getAllNotificationIDs()
TimerMBeangetAllNotificationIDs in interface TimerMBeanjavax.management.timer.TimerMBeanInteger objects containing all the timer notification identifiers.
public java.util.Vector getNotificationIDs(java.lang.String type)
TimerMBeangetNotificationIDs in interface TimerMBeanjavax.management.timer.TimerMBeantype - The timer notification type.Integer objects containing all the identifiers of
timer notifications with the specified type.
type.public java.lang.String getNotificationType(java.lang.Integer id)
TimerMBeangetNotificationType in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.lang.String getNotificationMessage(java.lang.Integer id)
TimerMBeangetNotificationMessage in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.lang.Object getNotificationUserData(java.lang.Integer id)
TimerMBeangetNotificationUserData in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.util.Date getDate(java.lang.Integer id)
TimerMBeangetDate in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.lang.Long getPeriod(java.lang.Integer id)
TimerMBeangetPeriod in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.lang.Long getNbOccurences(java.lang.Integer id)
TimerMBeangetNbOccurences in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public java.lang.Boolean getFixedRate(java.lang.Integer id)
TimerMBeangetFixedRate in interface TimerMBeanjavax.management.timer.TimerMBeanid - The timer notification identifier.public boolean getSendPastNotifications()
TimerMBeangetSendPastNotifications in interface TimerMBeanjavax.management.timer.TimerMBeanTimerMBean.setSendPastNotifications(boolean)public void setSendPastNotifications(boolean flag)
TimerMBeansetSendPastNotifications in interface TimerMBeanjavax.management.timer.TimerMBeanvalue - The past notifications sending on/off flag value.TimerMBean.getSendPastNotifications()public boolean isActive()
TimerMBeandoStart method is called.
It becomes inactive when the doStop method is called.isActive in interface TimerMBeanjavax.management.timer.TimerMBeantrue if the timer MBean is active, false otherwise.public boolean isEmpty()
TimerMBeanisEmpty in interface TimerMBeanjavax.management.timer.TimerMBeantrue if the list of timer notifications is empty, false otherwise.public MBeanNotificationInfo[] getNotificationInfo()
NotificationBroadcasterSupportgetNotificationInfo in class NotificationBroadcasterSupport
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||