Package com._1c.g5.v8.derived.pipeline
Enum DerivedDataSegmentConcurrencyStrategy
- java.lang.Object
-
- java.lang.Enum<DerivedDataSegmentConcurrencyStrategy>
-
- com._1c.g5.v8.derived.pipeline.DerivedDataSegmentConcurrencyStrategy
-
- All Implemented Interfaces:
Serializable
,Comparable<DerivedDataSegmentConcurrencyStrategy>
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.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CONCURRENT
EXCLUSIVE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DerivedDataSegmentConcurrencyStrategy
valueOf(String name)
Returns the enum constant of this type with the specified name.static DerivedDataSegmentConcurrencyStrategy[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXCLUSIVE
public static final DerivedDataSegmentConcurrencyStrategy EXCLUSIVE
-
CONCURRENT
public static final DerivedDataSegmentConcurrencyStrategy CONCURRENT
-
-
Method Detail
-
values
public static DerivedDataSegmentConcurrencyStrategy[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DerivedDataSegmentConcurrencyStrategy c : DerivedDataSegmentConcurrencyStrategy.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DerivedDataSegmentConcurrencyStrategy valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
-