Uses of Class
com.pervasive.datarush.operators.OperatorSettings
-
Packages that use OperatorSettings Package Description com.pervasive.datarush.graphs Provides classes and interfaces for the construction of executable dataflow graphs.com.pervasive.datarush.operators Provides classes and interfaces for developing dataflow operators. -
-
Uses of OperatorSettings in com.pervasive.datarush.graphs
Methods in com.pervasive.datarush.graphs with parameters of type OperatorSettings Modifier and Type Method Description static LogicalGraph
LogicalGraphFactory. newLogicalGraph(OperatorSettings settings)
Creates an empty logical graph with specifiedOperatorSettings
.static LogicalGraph
LogicalGraphFactory. newLogicalGraph(OperatorSettings settings, EngineConfig defaultConfig)
Creates an empty logical graph with specifiedOperatorSettings
and defaultEngineConfig
. -
Uses of OperatorSettings in com.pervasive.datarush.operators
Fields in com.pervasive.datarush.operators declared as OperatorSettings Modifier and Type Field Description static OperatorSettings
OperatorSettings. DEFAULT
Default operator settings: unspecified namestatic OperatorSettings
OperatorSettings. PARALLELISM_DISABLED
Operator settings withmaxParallelism
set to 1Methods in com.pervasive.datarush.operators that return OperatorSettings Modifier and Type Method Description OperatorSettings
OperatorSettings. disableParallelism()
Can be called to forcible disable parallelism for the given operator (and children if this is aCompositeOperator
).OperatorSettings
OperatorSettings. hiddenPath(boolean hidden)
Returns an operator settings object, equivalent to this, but withhiddenPath
set to the specified value.static OperatorSettings
OperatorSettings. MAX_PARALLELISM(int maxParallelism)
Operator settings withmaxParallelism
set to the specified value.OperatorSettings
OperatorSettings. maxParallelism(int maxParallelism)
Can be used to restrict the parallelism of an operator.OperatorSettings
OperatorSettings. metadata(String key, Object value)
Returns an operator settings object, equivalent to this, but with its metadata modified.static OperatorSettings
OperatorSettings. NAME(String name)
Operator settings withname
set to the specified value.static OperatorSettings
OperatorSettings. RELATIVE_PATH(GraphPath path)
Operator settings withrelativePath
set to the specified value.OperatorSettings
OperatorSettings. rename(GraphPath path)
Returns an operator settings object, equivalent to this, but withrelativePath
andname
set to the specified value.OperatorSettings
OperatorSettings. rename(String name)
Returns an operator settings object, equivalent to this, but withrelativePath
set to a path consisting of a single element equal to the specified name andname
set to the specified value.Methods in com.pervasive.datarush.operators with parameters of type OperatorSettings Modifier and Type Method Description <O extends LogicalOperator>
OOperatorComposable. add(O op, OperatorSettings settings)
Add a LogicalOperator to this graph, specifying advanced operator settings.
-