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

lritdcs.QueuedMessage 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!
package lritdcs;

import lrgs.common.DcpMsg;
import lrgs.common.DcpMsgIndex;

public class QueuedMessage
{
	/** the queued message */
	DcpMsg msg;
	
	/** the index of this message */
	DcpMsgIndex idx;
	
	/** the time that this entry was enqueued */
	long enqueueMsec;
	
	public QueuedMessage(DcpMsg msg, DcpMsgIndex idx)
	{
		this.msg = msg;
		this.idx = idx;
		enqueueMsec = System.currentTimeMillis();
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy