Introduction to Amazon Code Pipeline with Java part 18: the job worker thread
July 30, 2016 Leave a comment
Introduction
In the previous post we looked at an implementation stub for the JobProcessor interface. The implementation reflects our real life Code Pipeline third party action job process. The business specific logic has been omitted of course as that is not crucial for understanding the code. Probably the most important bit was checking whether the continuation token was present in the incoming Code Pipeline job. That was the basis for distinguishing new load tests from ongoing ones. We also saw how to indicate to CP that a job is ongoing or whether it has finished with success or failure.
In this post we’ll start looking into how to start the job checking thread.