Interface AsyncDataProcessingTask
-
public interface AsyncDataProcessingTask
Describes data processing that is executed asynchronously, provides methods to control the execution
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
shutdownGracefully()
Signal for the data processing to finish and wait for its completion synchronously.
-
-
-
Method Detail
-
shutdownGracefully
void shutdownGracefully()
Signal for the data processing to finish and wait for its completion synchronously. Return without taking any action if the data processing is already finished.
This method will be called automatically:- on build step finish for build step -scoped data processors
- on build finish for build-scoped data processors
- on build interruption
-
-