Package com._1c.g5.v8.derived.pipeline
Enum DerivedDataSegmentBucket
- java.lang.Object
-
- java.lang.Enum<DerivedDataSegmentBucket>
-
- com._1c.g5.v8.derived.pipeline.DerivedDataSegmentBucket
-
- All Implemented Interfaces:
Serializable
,Comparable<DerivedDataSegmentBucket>
public enum DerivedDataSegmentBucket extends Enum<DerivedDataSegmentBucket>
The async execution pipeline consists of the following buckets(stages):
- STARTING - the initial stage of the pipeline.
- SYNC - the part of DD that could be computed in parallel with external source changes (resource sync. phase).
- AFTER_SYNC - the part of DD that should be computed after synchronization in user-block mode in order to prevent data corruption or unpredictable results. Typicaly it's a wide-area data dependent DD scenarios
- BEFORE_BUILD - the part of DD that should be computed before the EDT language build. User could perform activities during this stage.
- NORMAL - Normal DD computation. User could perform activities during this stage.
- AFTER_BUILD - User inactive and all build operations are finished at the moment. User could perform activities during this stage.
- FINISHING - the finishing stage of the pipeline.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTER_BUILD
AFTER_SYNC
BEFORE_BUILD
FINISHING
NORMAL
STARTING
SYNC
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DerivedDataSegmentBucket
valueOf(String name)
Returns the enum constant of this type with the specified name.static DerivedDataSegmentBucket[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STARTING
public static final DerivedDataSegmentBucket STARTING
-
SYNC
public static final DerivedDataSegmentBucket SYNC
-
AFTER_SYNC
public static final DerivedDataSegmentBucket AFTER_SYNC
-
BEFORE_BUILD
public static final DerivedDataSegmentBucket BEFORE_BUILD
-
NORMAL
public static final DerivedDataSegmentBucket NORMAL
-
AFTER_BUILD
public static final DerivedDataSegmentBucket AFTER_BUILD
-
FINISHING
public static final DerivedDataSegmentBucket FINISHING
-
-
Method Detail
-
values
public static DerivedDataSegmentBucket[] 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 (DerivedDataSegmentBucket c : DerivedDataSegmentBucket.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DerivedDataSegmentBucket 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
-
-