decodes.snotel.SnotelStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opendcs Show documentation
Show all versions of opendcs Show documentation
A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.
The newest version!
package decodes.snotel;
/**
* Bean class to hold various status variables.
* When status changes, these are stored in snotel.stat
* @author mmaloney
*
*/
public class SnotelStatus
{
/** Last time each type of file was read from controlM directory*/
public long historyLMT = 0L;
public long realtimeLMT = 0L;
public long configLMT = 0L;
public long lastHistoryRun = 0L;
public long lastRealtimeRun = 0L;
public SnotelStatus()
{
}
}