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.
  • Enum Constant Details

  • Method Details

    • values

      public static DerivedDataSegmentConcurrencyStrategy[] 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

      public static DerivedDataSegmentConcurrencyStrategy valueOf(String name)
      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 name
      NullPointerException - if the argument is null