Enum Class DerivedDataSegmentBucket

java.lang.Object
java.lang.Enum<DerivedDataSegmentBucket>
com._1c.g5.v8.derived.pipeline.DerivedDataSegmentBucket
All Implemented Interfaces:
Serializable, Comparable<DerivedDataSegmentBucket>, Constable

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.