tag:blogger.com,1999:blog-3237724005744642470.post589993009582698859..comments2020-07-30T12:43:10.297+01:00Comments on Captain Debug's Blog: Synchronising Multithreaded Integration TestsRoger Hugheshttp://www.blogger.com/profile/07042290171112551665[email protected]Blogger5125tag:blogger.com,1999:blog-3237724005744642470.post-9255967261282282292013-05-10T20:26:42.253+01:002013-05-10T20:26:42.253+01:00Ups, I somehow missed your follow-up. Too bad, you...Ups, I somehow missed your follow-up. Too bad, you already addressed some of my concerns. I would&#39;ve think twice before posting my article.<br /><br />At least I&#39;ll link to your second part. Thanks or pointing this out!Tomasz Nurkiewiczhttps://www.blogger.com/profile/05938011050162061962[email protected]tag:blogger.com,1999:blog-3237724005744642470.post-46055580511629375102013-05-10T08:02:39.853+01:002013-05-10T08:02:39.853+01:00Tomasz, A nice article. I also did a follow up to ...Tomasz,<br />A nice article. I also did a follow up to this blog a few weeks later. See: /2013/04/five-ways-of-synchronising.html#.UYn5nMu9KK0Roger Hugheshttps://www.blogger.com/profile/07042290171112551665[email protected]tag:blogger.com,1999:blog-3237724005744642470.post-17759373675988177242013-05-06T18:35:33.580+01:002013-05-06T18:35:33.580+01:00Thanks for your article, it inspired me to write a...Thanks for your article, it inspired me to write about few other techniques based on the same example: http://nurkiewicz.blogspot.com/2013/05/synchronising-multithreaded-integration.htmlTomasz Nurkiewiczhttps://www.blogger.com/profile/05938011050162061962[email protected]tag:blogger.com,1999:blog-3237724005744642470.post-90301979280068982512013-02-07T18:35:05.152+00:002013-02-07T18:35:05.152+00:00Chris, a good point. There are several ways to cra...Chris,<br />a good point. There are several ways to crack this problem; however, one of the main points I wanted to make is that you need to synchronise the Junit test thread with any worker threads and do it without using any sleep calls. I did consider using an Executor, but wanted the code that demonstrates these points to be as simple as possible.Roger Hugheshttps://www.blogger.com/profile/07042290171112551665[email protected]tag:blogger.com,1999:blog-3237724005744642470.post-46978285920987431192013-02-07T08:12:22.108+00:002013-02-07T08:12:22.108+00:00Why not simply using an ExecutorService and observ...Why not simply using an ExecutorService and observing the Future(s)?Chris[email protected]