by karthik » 19 Jul 2014, 00:42
In the GazeManager.activate method, you create a cached thread pool (line 159) instead of a fixed thread pool. As a result, if I put a breakpoint in my GazeListener method, I'm pretty much toast! There are an endless number of threads that get spawned since at any given point the threads that subsequently come in hang. You should perhaps consider accepting an optional configuration object in the activate method wherein the user can specify the number of threads that should be used or you should use a fixed size thread pool.