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

org.yamcs.events.EventProducer Maven / Gradle / Ivy

There is a newer version: 5.10.7
Show newest version
package org.yamcs.events;

import org.yamcs.protobuf.Event.EventSeverity;
import org.yamcs.yarch.protobuf.Db.Event;

public interface EventProducer {

    public abstract void setSource(String source);

    public abstract void setSeqNo(int sn);

    public abstract void sendEvent(EventSeverity severity, String type, String msg);

    public abstract void sendEvent(Event event);

    default void sendInfo(String type, String msg) {
        sendEvent(EventSeverity.INFO, type, msg);
    }

    /**
     * @deprecated It is not according to XTCE levels, please use {@link #sendCritical(String, String)} instead.
     * 
     */
    @Deprecated
    default void sendError(String type, String msg) {
        sendEvent(EventSeverity.ERROR, type, msg);
    }

    /**
     * Send a warning event with the given type and message
     *
     */
    default void sendWarning(String type, String msg) {
        sendEvent(EventSeverity.WARNING, type, msg);
    }

    /**
     * Send a warning event with the given type and message
     *
     */
    default void sendWatch(String type, String msg) {
        sendEvent(EventSeverity.WATCH, type, msg);
    }

    /**
     * Send a distress event with the given type and message
     *
     */
    default void sendDistress(String type, String msg) {
        sendEvent(EventSeverity.DISTRESS, type, msg);
    }

    /**
     * Send a critical event with the given type and message
     *
     */
    default void sendCritical(String type, String msg) {
        sendEvent(EventSeverity.CRITICAL, type, msg);
    }

    /**
     * Send a severe event with the given type and message
     *
     */
    default void sendSevere(String type, String msg) {
        sendEvent(EventSeverity.SEVERE, type, msg);
    }

    /**
     * send an info event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendInfo(String msg);

    /**
     * send an warning event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendWarning(String msg);

    /**
     * send an watch event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendWatch(String msg);

    /**
     * send an distress event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendDistress(String msg);

    /**
     * send an critical event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendCritical(String msg);

    /**
     * send an severe event with the type automatically filled in as the caller class name
     * 
     * @param msg
     *            - event message
     */
    void sendSevere(String msg);

    /**
     * Enable/disable repeated event reduction. If enabled, the events that are equal are not sent until the timeout
     * expires, case in which an event containing the number of events skipped will be sent.
     * 
     * Two events are considered equal if their source, type, severity and message are equal. The sequence count and
     * timestamp do not need to be equal.
     * 
     * The event sent in case the timeout is expired is a copy of the last event except that the message is replaced
     * with "Repeated x times: original message"
     * 
     * @param repeatedEventReduction
     *            if true - enable the reduction of events.
     * @param repeatedEventTimeoutMillisec
     *            - how long to keep quiet in case of equal events being sent
     */
    public abstract void setRepeatedEventReduction(boolean repeatedEventReduction, long repeatedEventTimeoutMillisec);

    /**
     * Creates a default Event Builder with these fields pre-filled: source, seqNo, receptionTime, generationTime
     */
    public abstract Event.Builder newEvent();

    /**
     * Closes the connection to the server; the producer is unusable after this is called
     */
    public void close();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy