lritdcs.QueuedMessage 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 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();
}
}