-
public final class DebuggerEvent.PausedEvent extends DebuggerEvent
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria.
-
-
Field Summary
Fields Modifier and Type Field Description private final List<CallFrame>callFramesprivate final Stringreasonprivate final JsonElementdataprivate final List<String>hitBreakpointsprivate final StackTraceasyncStackTraceprivate final StackTraceIdasyncStackTraceIdprivate final StackTraceIdasyncCallStackTraceId
-
Constructor Summary
Constructors Constructor Description PausedEvent(List<CallFrame> callFrames, String reason, JsonElement data, List<String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)
-
Method Summary
Modifier and Type Method Description final List<CallFrame>component1()final Stringcomponent2()final JsonElementcomponent3()final List<String>component4()final StackTracecomponent5()final StackTraceIdcomponent6()final StackTraceIdcomponent7()final DebuggerEvent.PausedEventcopy(List<CallFrame> callFrames, String reason, JsonElement data, List<String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)final List<CallFrame>getCallFrames()Call stack the virtual machine stopped on. final StringgetReason()Pause reason. final JsonElementgetData()Object containing break-specific auxiliary properties. final List<String>getHitBreakpoints()Hit breakpoints IDs final StackTracegetAsyncStackTrace()Async stack trace, if any. final StackTraceIdgetAsyncStackTraceId()Async stack trace, if any. final StackTraceIdgetAsyncCallStackTraceId()Never present, will be removed. -
-
Constructor Detail
-
PausedEvent
PausedEvent(List<CallFrame> callFrames, String reason, JsonElement data, List<String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)
-
-
Method Detail
-
component1
final List<CallFrame> component1()
-
component2
final String component2()
-
component3
final JsonElement component3()
-
component4
final List<String> component4()
-
component5
final StackTrace component5()
-
component6
final StackTraceId component6()
-
component7
final StackTraceId component7()
-
copy
final DebuggerEvent.PausedEvent copy(List<CallFrame> callFrames, String reason, JsonElement data, List<String> hitBreakpoints, StackTrace asyncStackTrace, StackTraceId asyncStackTraceId, StackTraceId asyncCallStackTraceId)
-
getCallFrames
final List<CallFrame> getCallFrames()
Call stack the virtual machine stopped on.
-
getData
final JsonElement getData()
Object containing break-specific auxiliary properties.
-
getHitBreakpoints
final List<String> getHitBreakpoints()
Hit breakpoints IDs
-
getAsyncStackTrace
final StackTrace getAsyncStackTrace()
Async stack trace, if any.
-
getAsyncStackTraceId
final StackTraceId getAsyncStackTraceId()
Async stack trace, if any.
-
getAsyncCallStackTraceId
final StackTraceId getAsyncCallStackTraceId()
Never present, will be removed.
-
-
-
-