Record Class WarehouseQueryTypes.ExecutionHints

java.lang.Object
java.lang.Record
app.ductape.sdk.warehouse.types.WarehouseQueryTypes.ExecutionHints
Enclosing class:
WarehouseQueryTypes

public static record WarehouseQueryTypes.ExecutionHints(String joinStrategy, Long maxJoinMemory, Boolean parallel, Long timeout, Boolean streaming, Long cacheTtl, Boolean readFromPrimary) extends Record
TS IExecutionHints
  • Constructor Details

    • ExecutionHints

      public ExecutionHints(String joinStrategy, Long maxJoinMemory, Boolean parallel, Long timeout, Boolean streaming, Long cacheTtl, Boolean readFromPrimary)
      Creates an instance of a ExecutionHints record class.
      Parameters:
      joinStrategy - the value for the joinStrategy record component
      maxJoinMemory - the value for the maxJoinMemory record component
      parallel - the value for the parallel record component
      timeout - the value for the timeout record component
      streaming - the value for the streaming record component
      cacheTtl - the value for the cacheTtl record component
      readFromPrimary - the value for the readFromPrimary record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • joinStrategy

      public String joinStrategy()
      Returns the value of the joinStrategy record component.
      Returns:
      the value of the joinStrategy record component
    • maxJoinMemory

      public Long maxJoinMemory()
      Returns the value of the maxJoinMemory record component.
      Returns:
      the value of the maxJoinMemory record component
    • parallel

      public Boolean parallel()
      Returns the value of the parallel record component.
      Returns:
      the value of the parallel record component
    • timeout

      public Long timeout()
      Returns the value of the timeout record component.
      Returns:
      the value of the timeout record component
    • streaming

      public Boolean streaming()
      Returns the value of the streaming record component.
      Returns:
      the value of the streaming record component
    • cacheTtl

      public Long cacheTtl()
      Returns the value of the cacheTtl record component.
      Returns:
      the value of the cacheTtl record component
    • readFromPrimary

      public Boolean readFromPrimary()
      Returns the value of the readFromPrimary record component.
      Returns:
      the value of the readFromPrimary record component