All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.openremote.manager.asset.OutdatedAttributeEvent Maven / Gradle / Ivy

package org.openremote.manager.asset;

import org.openremote.model.attribute.AttributeEvent;
import org.openremote.model.event.Event;

/**
 * This is an event for use by internal event subscribers to be notified of an outdated {@link AttributeEvent} that has
 * just been processed.
 */
public class OutdatedAttributeEvent extends Event {
    protected AttributeEvent event;

    public OutdatedAttributeEvent(AttributeEvent event) {
        super(event.getTimestamp());
        this.event = event;
    }

    public AttributeEvent getEvent() {
        return event;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy