Package io.webfolder.cdp.event.debugger
Class Paused
- java.lang.Object
-
- io.webfolder.cdp.event.debugger.Paused
-
public class Paused extends java.lang.Object
Fired when the virtual machine stopped on breakpoint or exception or any other stop criteria
-
-
Constructor Summary
Constructors Constructor Description Paused()
-
Method Summary
Modifier and Type Method Description StackTraceId
getAsyncCallStackTraceId()
Just scheduled async call will have this stack trace as parent stack during async execution.StackTrace
getAsyncStackTrace()
Async stack trace, if any.StackTraceId
getAsyncStackTraceId()
Async stack trace, if any.java.util.List<CallFrame>
getCallFrames()
Call stack the virtual machine stopped on.java.lang.Object
getData()
Object containing break-specific auxiliary properties.java.util.List<java.lang.String>
getHitBreakpoints()
Hit breakpoints IDsPauseReason
getReason()
Pause reason.void
setAsyncCallStackTraceId(StackTraceId asyncCallStackTraceId)
Just scheduled async call will have this stack trace as parent stack during async execution.void
setAsyncStackTrace(StackTrace asyncStackTrace)
Async stack trace, if any.void
setAsyncStackTraceId(StackTraceId asyncStackTraceId)
Async stack trace, if any.void
setCallFrames(java.util.List<CallFrame> callFrames)
Call stack the virtual machine stopped on.void
setData(java.lang.Object data)
Object containing break-specific auxiliary properties.void
setHitBreakpoints(java.util.List<java.lang.String> hitBreakpoints)
Hit breakpoints IDsvoid
setReason(PauseReason reason)
Pause reason.
-
-
-
Method Detail
-
getCallFrames
public java.util.List<CallFrame> getCallFrames()
Call stack the virtual machine stopped on.
-
setCallFrames
public void setCallFrames(java.util.List<CallFrame> callFrames)
Call stack the virtual machine stopped on.
-
getReason
public PauseReason getReason()
Pause reason.
-
setReason
public void setReason(PauseReason reason)
Pause reason.
-
getData
public java.lang.Object getData()
Object containing break-specific auxiliary properties.
-
setData
public void setData(java.lang.Object data)
Object containing break-specific auxiliary properties.
-
getHitBreakpoints
public java.util.List<java.lang.String> getHitBreakpoints()
Hit breakpoints IDs
-
setHitBreakpoints
public void setHitBreakpoints(java.util.List<java.lang.String> hitBreakpoints)
Hit breakpoints IDs
-
getAsyncStackTrace
public StackTrace getAsyncStackTrace()
Async stack trace, if any.
-
setAsyncStackTrace
public void setAsyncStackTrace(StackTrace asyncStackTrace)
Async stack trace, if any.
-
getAsyncStackTraceId
public StackTraceId getAsyncStackTraceId()
Async stack trace, if any.
-
setAsyncStackTraceId
public void setAsyncStackTraceId(StackTraceId asyncStackTraceId)
Async stack trace, if any.
-
getAsyncCallStackTraceId
public StackTraceId getAsyncCallStackTraceId()
Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only afterDebugger.stepInto
call withbreakOnAsynCall
flag.
-
setAsyncCallStackTraceId
public void setAsyncCallStackTraceId(StackTraceId asyncCallStackTraceId)
Just scheduled async call will have this stack trace as parent stack during async execution. This field is available only afterDebugger.stepInto
call withbreakOnAsynCall
flag.
-
-