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

lritdcs.SentFile Maven / Gradle / Ivy

Go to download

A collection of software for aggregatting and processing environmental data such as from NOAA GOES satellites.

The newest version!
/*
*  $Id$
*
*  $Log$
*  Revision 1.1  2008/04/04 18:21:16  cvs
*  Added legacy code to repository
*
*  Revision 1.2  2004/05/21 18:27:45  mjmaloney
*  Release prep.
*
*  Revision 1.1  2004/05/11 20:46:26  mjmaloney
*  LQM Impl
*
*/
package lritdcs;

/**
Objects of this type are stored on the pending queue.
*/
public class SentFile
{
	/// Filename that was sent.
	String filename;

	/// System time when file will expire & need to be retransmitted
	long expireTime;

	public SentFile(String name, long tm)
	{
		filename = name;
		expireTime = tm;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy