Package com.barchart.feed.base.provider

Examples of com.barchart.feed.base.provider.DefBook


  }

  @Override
  public final DefBook freeze() {
    return new DefBook(instrument, time(),
        entries(Book.Side.BID),
        entries(Book.Side.ASK),
        topBid, topAsk,
        lastEntry, EnumSet.copyOf(changeSet));
  }
View Full Code Here


  }

  @Override
  public final DefBook freeze() {
    return new DefBook(time(), entries(BID), entries(ASK), null, null);
  }
View Full Code Here

  }

  @Override
  public final DefBook freeze() {
    return new DefBook(instrument, time(), entries(Book.Side.BID),
        entries(Book.Side.ASK), lastEntry);
  }
View Full Code Here

  }

  @Override
  public final DefBook freeze() {
   
    return new DefBook(instrument, time(),
        entries(Book.Side.BID),
        entries(Book.Side.ASK),
        lastEntry);
  }
View Full Code Here

  }

  @Override
  public final DefBook freeze() {
    return new DefBook(instrument, time(),
        entries(Book.Side.BID),
        entries(Book.Side.ASK),
        lastEntry);
  }
View Full Code Here

  }

  @Override
  public final DefBook freeze() {
    return new DefBook(instrument, time(),
        entries(Book.Side.BID),
        entries(Book.Side.ASK),
        lastEntry, EnumSet.copyOf(changeSet));
  }
View Full Code Here

  }

  @Override
  public final DefBook freeze() {
    return new DefBook(instrument, time(),
        entries(Book.Side.BID),
        entries(Book.Side.ASK),
        topBid, topAsk,
        lastEntry, EnumSet.copyOf(changeSet));
  }
View Full Code Here

TOP

Related Classes of com.barchart.feed.base.provider.DefBook

Copyright © 2018 www.massapicom. 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.