Enum 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.
    • 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 name
        NullPointerException - if the argument is null