Examples of DDF_QuoteState


Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

  @Override
  public Void visit(final DDF_MarketQuote message, final MarketDo market) {

    market.clearChanges();

    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final byte modeCode = xmlByteDecode(tag, QUOTE_MODE, XML_PASS);
    final DDF_QuoteMode mode = DDF_QuoteMode.fromCode(modeCode);
    setMode(mode);

    final byte flagCode = xmlByteDecode(tag, QUOTE_STATE, XML_PASS);
    final DDF_QuoteState flag = DDF_QuoteState.fromCode(flagCode);
    setState(flag);
    if (flag == DDF_QuoteState.UNKNOWN) {
      log.debug("Parsed UNKNOWN QuoteState : {}", flagCode);
    }
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final DDF_QuoteMode mode = getMode();
    if (mode.isKnown()) {
      xmlByteEncode(mode.code, tag, QUOTE_MODE);
    }

    final DDF_QuoteState flag = getState();
    if (flag.isKnown()) {
      xmlByteEncode(flag.code, tag, QUOTE_STATE);
    }

    xmlDecimalEncode(priceStep, frac, tag, PRICE_TICK_INCREMENT);
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here

Examples of com.barchart.feed.ddf.message.enums.DDF_QuoteState

    final PriceValue priceStep = message.getPriceStep();
    final PriceValue pointValue = message.getPointValue();

    // TODO add more complete flag support?
    final DDF_Condition condition = message.getCondition();
    final DDF_QuoteState state = message.getState();
    final DDF_QuoteMode mode = message.getMode();

    /** Handle quote publish state */
    {
      switch (mode) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.