
org.yamcs.sle.SleMonitor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsle Show documentation
Show all versions of jsle Show documentation
Java implementation for the SLE (Space Link Extension) protocol.
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