Class TimerNotification

java.lang.Object
java.util.EventObject
javax.management.Notification
javax.management.timer.TimerNotification
All Implemented Interfaces:
Serializable
public class TimerNotification extends Notification
This class provides definitions of the notifications sent by timer MBeans.
It defines a timer notification identifier which allows to retrieve a timer notification from the list of notifications of a timer MBean.

The timer notifications are created and handled by the timer MBean.

Since:
1.5
See Also:

Field Summary

Fields declared in class javax.management.Notification

source

Constructor Summary

Constructor Description
TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id)
Creates a timer notification object.

Method Summary

Modifier and Type Method Description
Integer getNotificationID()
Gets the identifier of this timer notification.

Methods declared in class java.util.EventObject

getSource

Methods declared in class java.lang.Object

clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Constructor Details

TimerNotification

public TimerNotification(String type, Object source, long sequenceNumber, long timeStamp, String msg, Integer id)
Creates a timer notification object.
Parameters:
type - The notification type.
source - The notification producer.
sequenceNumber - The notification sequence number within the source object.
timeStamp - The notification emission date.
msg - The notification message.
id - The notification identifier.

Method Details

getNotificationID

public Integer getNotificationID()
Gets the identifier of this timer notification.
Returns:
The identifier.

© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.management/javax/management/timer/TimerNotification.html