Interface TaskIterativeOperationCollector
-
- All Known Subinterfaces:
StatisticsCollector
public interface TaskIterativeOperationCollector
Support for recording iterative operations directly on tasks - where activities are not available.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description @NotNull Operation
recordIterativeOperationStart(@NotNull IterativeOperationStartInfo info)
Records the start of iterative operation.default @NotNull Operation
recordIterativeOperationStart(PrismObject<? extends ObjectType> object)
Records the start of iterative operation.default @NotNull Operation
recordIterativeOperationStart(IterationItemInformation info)
Records the start of iterative operation.
-
-
-
Method Detail
-
recordIterativeOperationStart
@NotNull default @NotNull Operation recordIterativeOperationStart(PrismObject<? extends ObjectType> object)
Records the start of iterative operation. The operation end is recorded by calling appropriate method on the returned object.
-
recordIterativeOperationStart
@NotNull default @NotNull Operation recordIterativeOperationStart(IterationItemInformation info)
Records the start of iterative operation. The operation end is recorded by calling appropriate method on the returned object.
-
recordIterativeOperationStart
@NotNull @NotNull Operation recordIterativeOperationStart(@NotNull @NotNull IterativeOperationStartInfo info)
Records the start of iterative operation. The operation end is recorded by calling appropriate method on the returned object.
-
-