Interface InternalPhasedAction
-
- All Superinterfaces:
InternalProtocolInterface
,java.io.Serializable
- All Known Implementing Classes:
InternalPhasedActionAdapter
public interface InternalPhasedAction extends InternalProtocolInterface, java.io.Serializable
DO NOT CHANGE THIS INTERFACE - it is part of the cross-version protocol.
Consumer compatibility: This interface is implemented by all consumer versions from 4.8.
Provider compatibility: This interface is consumed by all provider versions from 4.8.
- Since:
- 4.8
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description InternalBuildActionVersion2<?>
getBuildFinishedAction()
Internal version of the action to be run after tasks are run.InternalBuildActionVersion2<?>
getProjectsLoadedAction()
Internal version of the action to be run after projects are loaded.
-
-
-
Method Detail
-
getProjectsLoadedAction
@Nullable InternalBuildActionVersion2<?> getProjectsLoadedAction()
Internal version of the action to be run after projects are loaded.
-
getBuildFinishedAction
@Nullable InternalBuildActionVersion2<?> getBuildFinishedAction()
Internal version of the action to be run after tasks are run.
-
-