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 LogicalGraphLogicalGraphFactory. newLogicalGraph(OperatorSettings settings)Creates an empty logical graph with specifiedOperatorSettings.static LogicalGraphLogicalGraphFactory. newLogicalGraph(OperatorSettings settings, EngineConfig defaultConfig)Creates an empty logical graph with specifiedOperatorSettingsand defaultEngineConfig. -
Uses of OperatorSettings in com.pervasive.datarush.operators
Fields in com.pervasive.datarush.operators declared as OperatorSettings Modifier and Type Field Description static OperatorSettingsOperatorSettings. DEFAULTDefault operator settings: unspecified namestatic OperatorSettingsOperatorSettings. PARALLELISM_DISABLEDOperator settings withmaxParallelismset to 1Methods in com.pervasive.datarush.operators that return OperatorSettings Modifier and Type Method Description OperatorSettingsOperatorSettings. disableParallelism()Can be called to forcible disable parallelism for the given operator (and children if this is aCompositeOperator).OperatorSettingsOperatorSettings. hiddenPath(boolean hidden)Returns an operator settings object, equivalent to this, but withhiddenPathset to the specified value.static OperatorSettingsOperatorSettings. MAX_PARALLELISM(int maxParallelism)Operator settings withmaxParallelismset to the specified value.OperatorSettingsOperatorSettings. maxParallelism(int maxParallelism)Can be used to restrict the parallelism of an operator.OperatorSettingsOperatorSettings. metadata(String key, Object value)Returns an operator settings object, equivalent to this, but with its metadata modified.static OperatorSettingsOperatorSettings. NAME(String name)Operator settings withnameset to the specified value.static OperatorSettingsOperatorSettings. RELATIVE_PATH(GraphPath path)Operator settings withrelativePathset to the specified value.OperatorSettingsOperatorSettings. rename(GraphPath path)Returns an operator settings object, equivalent to this, but withrelativePathandnameset to the specified value.OperatorSettingsOperatorSettings. rename(String name)Returns an operator settings object, equivalent to this, but withrelativePathset to a path consisting of a single element equal to the specified name andnameset 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.
-