Releases: matang28/java-pipelines
Releases · matang28/java-pipelines
Release list
Version 1.4
Version 1.3
Critical bug fix when a parallel task gets an empty input the executor service will wait for Integer.MAX_VALUE seconds before terminating. So the whole pipeline will halt.
This version is using CountDownLatch to synchronize the progress of execution. and executor.awaitTermination(...) is not used anymore.
Version 1.2
- Adding the input & output values to the before and after hooks.
Version 1.1
- Adding the ability to implement your own hooks when a task is started and completed.