A note abot thread-safety: Individual calls to public methods in this class are always thread-safe. When performing a compound operation it is necessary to synchronize on the DebugService
instance to guarantee correct behavior, e.g.:
DebugService svc = ... synchronized (svc) { if (!svc.isDebugging()) { DebuggingSession session = svc.startNewDebuggingSession(...); } }@author Torgil Zethson @since 3.0.0
|
|
|
|
|
|
|
|
|
|