Package com._1c.g5.v8.derived.pipeline
Enum Class DerivedDataSegmentBucket
- All Implemented Interfaces:
Serializable
,Comparable<DerivedDataSegmentBucket>
,Constable
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.
-
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 TypeMethodDescriptionstatic DerivedDataSegmentBucket
Returns the enum constant of this class with the specified name.static DerivedDataSegmentBucket[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
STARTING
-
SYNC
-
AFTER_SYNC
-
BEFORE_BUILD
-
NORMAL
-
AFTER_BUILD
-
FINISHING
-
-
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
-