Class CollectionCallbackExecutionAggregate_1_0
java.lang.Object
com.gradle.scan.eventmodel.gradle.collectioncallback.CollectionCallbackExecutionAggregate_1_0
An execution of a collection callback.
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionfinal longTotal amount of time spent executing callbacks with the given during and owner.final @Nullable("when the same as the immediately preceding execution\'s during") IntegerThe index of the entity that was executing when this callback executed.final @Nullable("when the same as the immediately preceding execution\'s owner") IntegerThe index of the entity that registered this callback. -
Constructor Summary
ConstructorsConstructorDescriptionCollectionCallbackExecutionAggregate_1_0(@Nullable Integer during, @Nullable Integer owner, long duration) -
Method Summary
-
Field Details
-
during
@Nullable("when the same as the immediately preceding execution\'s during") public final @Nullable("when the same as the immediately preceding execution\'s during") Integer duringThe index of the entity that was executing when this callback executed.The index pertains to the enclosing
CollectionCallbackData_1_0.participantsproperty.If the value is the same as the immediately preceding execution's during, the value will be null. Never null for the first execution.
-
owner
@Nullable("when the same as the immediately preceding execution\'s owner") public final @Nullable("when the same as the immediately preceding execution\'s owner") Integer ownerThe index of the entity that registered this callback.This is the entity that was executing when the callback was originally executed.
The index pertains to the enclosing
CollectionCallbackData_1_0.participantsproperty.If the value is the same as the immediately preceding execution's owner, the value will be null. Never null for the first execution.
-
duration
public final long durationTotal amount of time spent executing callbacks with the given during and owner.
-
-
Constructor Details
-
CollectionCallbackExecutionAggregate_1_0
-
-
Method Details