IntelliJ - pause thread while debugging

Is it possible to pause a thread while debugging on intellij? What I want to have is something similar to another identifier - right click on the stream and pause it.

+7
debugging multithreading intellij-idea
source share
1 answer

You either use a standard breakpoint that pauses all threads on hit, or you can use a breakpoint with suspend policy = thread .

+12
source share

All Articles