Class ExecutionInfo

java.lang.Object
velox.api.layer1.data.ExecutionInfo
All Implemented Interfaces:
java.io.Serializable

public class ExecutionInfo
extends java.lang.Object
implements java.io.Serializable
Information about order execution
See Also:
Serialized Form
  • Field Summary

    Fields 
    Modifier and Type Field Description
    java.lang.String executionId
    Execution ID
    boolean isSimulated
    True if execution is simulated by Bookmap.
    java.lang.String orderId  
    double price
    Price where execution happened
    int size
    Size of the execution
    long time
    Time when execution happened
  • Constructor Summary

    Constructors 
    Constructor Description
    ExecutionInfo​(java.lang.String orderId, int size, double price, java.lang.String executionId, long time)  
    ExecutionInfo​(java.lang.String orderId, int size, double price, java.lang.String executionId, long time, boolean isSimulated)  
    ExecutionInfo​(ExecutionInfo executionInfo)  
  • Method Summary

    Modifier and Type Method Description
    ExecutionInfoBuilder toBuilder()  
    java.lang.String toString()  

    Methods inherited from class java.lang.Object

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

    • orderId

      public final java.lang.String orderId
    • size

      public final int size
      Size of the execution
    • price

      public final double price
      Price where execution happened
    • executionId

      public final java.lang.String executionId
      Execution ID
    • time

      public final long time
      Time when execution happened
    • isSimulated

      public final boolean isSimulated
      True if execution is simulated by Bookmap.
  • Constructor Details

    • ExecutionInfo

      public ExecutionInfo​(java.lang.String orderId, int size, double price, java.lang.String executionId, long time)
    • ExecutionInfo

      public ExecutionInfo​(java.lang.String orderId, int size, double price, java.lang.String executionId, long time, boolean isSimulated)
    • ExecutionInfo

      public ExecutionInfo​(ExecutionInfo executionInfo)
  • Method Details