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

com.ddfplus.messages.DdfMessageBase Maven / Gradle / Ivy

There is a newer version: 1.1.7
Show newest version
/**
 * Copyright (C) 2004 - 2015 by Barchart.com, Inc. All Rights Reserved.
 * 
 * This software is the proprietary information of Barchart.com, Inc.
 * Use is subject to license terms.
 */
package com.ddfplus.messages;

import com.ddfplus.enums.DdfMessageType;

/**
 * Raw DDF Message
 */
public interface DdfMessageBase {

	/**
	 * Gets the bytes.
	 * 
	 * @return the bytes
	 */
	byte[] getBytes();

	/**
	 * Returns the time stamp of the message, if available. milliseconds
	 * 
	 * @return The time stamp
	 */
	long getMillisCST();

	long getMillisUTC();

	/**
	 * Gets the message type.
	 * 
	 * @return the type
	 */
	DdfMessageType getMessageType();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy