public TimerNotification(String type,
Object source,
long sequenceNumber,
long timeStamp,
String msg,
Integer id) {
/*
* ------------------------------------------
* CONSTRUCTORS
* ------------------------------------------
*/
super(type, source, sequenceNumber, timeStamp, msg);
this.notificationID = 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.
|