Package app.ductape.sdk.warehouse.types
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 Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncacheTtl()Returns the value of thecacheTtlrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thejoinStrategyrecord component.Returns the value of themaxJoinMemoryrecord component.parallel()Returns the value of theparallelrecord component.Returns the value of thereadFromPrimaryrecord component.Returns the value of thestreamingrecord component.timeout()Returns the value of thetimeoutrecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ExecutionHints
public ExecutionHints(String joinStrategy, Long maxJoinMemory, Boolean parallel, Long timeout, Boolean streaming, Long cacheTtl, Boolean readFromPrimary) Creates an instance of aExecutionHintsrecord class.- Parameters:
joinStrategy- the value for thejoinStrategyrecord componentmaxJoinMemory- the value for themaxJoinMemoryrecord componentparallel- the value for theparallelrecord componenttimeout- the value for thetimeoutrecord componentstreaming- the value for thestreamingrecord componentcacheTtl- the value for thecacheTtlrecord componentreadFromPrimary- the value for thereadFromPrimaryrecord component
-
-
Method Details
-
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. -
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. -
equals
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 withObjects::equals(Object,Object). -
joinStrategy
Returns the value of thejoinStrategyrecord component.- Returns:
- the value of the
joinStrategyrecord component
-
maxJoinMemory
Returns the value of themaxJoinMemoryrecord component.- Returns:
- the value of the
maxJoinMemoryrecord component
-
parallel
Returns the value of theparallelrecord component.- Returns:
- the value of the
parallelrecord component
-
timeout
Returns the value of thetimeoutrecord component.- Returns:
- the value of the
timeoutrecord component
-
streaming
Returns the value of thestreamingrecord component.- Returns:
- the value of the
streamingrecord component
-
cacheTtl
Returns the value of thecacheTtlrecord component.- Returns:
- the value of the
cacheTtlrecord component
-
readFromPrimary
Returns the value of thereadFromPrimaryrecord component.- Returns:
- the value of the
readFromPrimaryrecord component
-