Class OrderByOrderBook.Order

java.lang.Object
velox.api.layer1.layers.utils.OrderByOrderBook.Order
Enclosing class:
OrderByOrderBook

public static class OrderByOrderBook.Order
extends java.lang.Object
Describes single order
  • Field Summary

    Fields 
    Modifier and Type Field Description
    boolean isBid
    true if bid, false if ask
    int price
    order price
    long size
    order size
  • Constructor Summary

    Constructors 
    Constructor Description
    Order​(boolean isBid, int price, long size)  
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • isBid

      public boolean isBid
      true if bid, false if ask
    • price

      public int price
      order price
    • size

      public long size
      order size
  • Constructor Details

    • Order

      public Order​(boolean isBid, int price, long size)