Package org.gradle.tooling.events
Interface ProgressListener
-
public interface ProgressListenerA listener which is notified when operations that are executed as part of running a build make progress.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidstatusChanged(ProgressEvent event)Called when the execution of an operation progresses.
-
-
-
Method Detail
-
statusChanged
void statusChanged(ProgressEvent event)
Called when the execution of an operation progresses. The following operation-specific events are currently issued: For all other operations, the following generic events are currently issued : You can find out more about the operation for which progress is reported by querying the descriptor usingProgressEvent.getDescriptor().- Parameters:
event- An event describing the operation progress.- See Also:
TestProgressEvent,TaskProgressEvent,ProgressEvent
-
-