Uses of Class
com.pervasive.datarush.operators.OperatorSettings
Packages that use OperatorSettings
Package
Description
Provides classes and interfaces for the construction of executable
dataflow graphs.
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 OperatorSettingsModifier and TypeMethodDescriptionstatic 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 OperatorSettingsModifier and TypeFieldDescriptionstatic OperatorSettingsOperatorSettings.DEFAULTDefault operator settings: unspecified namestatic OperatorSettingsOperatorSettings.PARALLELISM_DISABLEDOperator settings withmaxParallelismset to 1Methods in com.pervasive.datarush.operators that return OperatorSettingsModifier and TypeMethodDescriptionOperatorSettings.disableParallelism()Can be called to forcible disable parallelism for the given operator (and children if this is aCompositeOperator).OperatorSettings.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.OperatorSettings.maxParallelism(int maxParallelism) Can be used to restrict the parallelism of an operator.Returns an operator settings object, equivalent to this, but with its metadata modified.static OperatorSettingsOperator settings withnameset to the specified value.static OperatorSettingsOperatorSettings.RELATIVE_PATH(GraphPath path) Operator settings withrelativePathset to the specified value.Returns an operator settings object, equivalent to this, but withrelativePathandnameset to the specified value.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 OperatorSettingsModifier and TypeMethodDescription<O extends LogicalOperator>
OOperatorComposable.add(O op, OperatorSettings settings) Add a LogicalOperator to this graph, specifying advanced operator settings.