45 lines
1.1 KiB
Java
45 lines
1.1 KiB
Java
package ctbrec.event;
|
|
|
|
public abstract class Event {
|
|
|
|
public static enum Type {
|
|
/**
|
|
* This event is fired every time the OnlineMonitor sees a model online
|
|
* It is also fired, if the model was online before. You can see it as a "still online ping".
|
|
*/
|
|
MODEL_ONLINE("model is online"),
|
|
|
|
/**
|
|
* This event is fired whenever the model's online state (Model.STATUS) changes.
|
|
*/
|
|
MODEL_STATUS_CHANGED("model status changed"),
|
|
|
|
|
|
/**
|
|
* This event is fired whenever the state of a recording changes.
|
|
*/
|
|
RECORDING_STATUS_CHANGED("recording status changed"),
|
|
|
|
/**
|
|
* This event is fired when the disk space is exhausted
|
|
*/
|
|
NO_SPACE_LEFT("no space left");
|
|
|
|
private String desc;
|
|
|
|
Type(String desc) {
|
|
this.desc = desc;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return desc;
|
|
}
|
|
}
|
|
|
|
public abstract Type getType();
|
|
public abstract String getName();
|
|
public abstract String getDescription();
|
|
public abstract String[] getExecutionParams();
|
|
}
|