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

com.barchart.feed.ddf.message.api.DDF_MarketBook Maven / Gradle / Ivy

There is a newer version: 4.2.73
Show newest version
/**
 * 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.book.api.MarketDoBookEntry;
import com.barchart.util.common.anno.NotMutable;

/**
 * represents ddf feed market depth snapshot.
 */
@NotMutable
public interface DDF_MarketBook extends DDF_MarketBase {

	/**
	 * maximum number of on bid or ask side
	 */
	int ENTRY_LIMIT = 10;

	MarketDoBookEntry[] entries();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy