Package com._1c.g5.v8.derived.pipeline
Enum Class DerivedDataSegmentConcurrencyStrategy
java.lang.Object
java.lang.Enum<DerivedDataSegmentConcurrencyStrategy>
com._1c.g5.v8.derived.pipeline.DerivedDataSegmentConcurrencyStrategy
- All Implemented Interfaces:
Serializable
,Comparable<DerivedDataSegmentConcurrencyStrategy>
,Constable
public enum DerivedDataSegmentConcurrencyStrategy
extends Enum<DerivedDataSegmentConcurrencyStrategy>
Derived data computation facility supports the following set of strategies for organizing concurrent computation of DD segments inside the
combined DD pipeline:
- EXCLUSIVE - The segment is placed in the pipeline according to it's priority, segment locks next segments from computation (except cases when segment supports lazy computations)
- CONCURRENT - segments with the same priority are grouped in a single group, data in those segments are calculated concurrently. Waiting of DD for a particular object/segment affects the priority inside the group.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
EXCLUSIVE
-
CONCURRENT
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-