views:

13

answers:

1

Can I pause a thread while debugging on intellij? What I want to have is something similiar to other ID - right click on a thread and pause it.

A: 

You an either use a standard breakpoint which will pause all threads when hit or you can use a breakpoint with the suspend policy = thread.

CrazyCoder