com.barchart.feed.ddf.message.api.DDF_ControlTimestamp Maven / Gradle / Ivy
/**
* Copyright (C) 2011-2012 Barchart, Inc.
*
* All rights reserved. Licensed under the OSI BSD License.
*
* http://www.opensource.org/licenses/bsd-license.php
*/
package com.barchart.feed.ddf.message.api;
import com.barchart.feed.base.values.api.TimeValue;
import com.barchart.util.common.anno.NotMutable;
/**
* represents ddf feed server time stamp or heart beat message.
*/
@NotMutable
public interface DDF_ControlTimestamp extends DDF_ControlBase {
/**
*
* @return The TimeValue representation of a server time stamp.
*/
TimeValue getStampUTC();
}