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

org.yamcs.sle.SleMonitor Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package org.yamcs.sle;

/**
 * Receives notifications related to the SLE link
 * @author nm
 *
 */
public interface SleMonitor {
    /**
     * called when the connection is established
     */
    public void connected();
    /**
     * called when the connection is lost
     */
    public void disconnected();
    
    /**
     * Called when the state changes
     * @param newState
     */
    public void stateChanged(State newState);
    
    /**
     * Called when an exception is encountered
     * @param t
     */
    public void exceptionCaught(Throwable t);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy