JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Tree
Deprecated
Index
Search
Help
GraalVM Truffle Java API Reference
26.0.0-dev
c924a4e04fe3a46d719f271d0192adbbed97452d
com.oracle.truffle.api.debug
SuspendedCallback
Contents
Description
Method Summary
Method Details
onSuspend(SuspendedEvent)
Hide sidebar
Show sidebar
Interface SuspendedCallback
public interface
SuspendedCallback
Callback invoked whenever the
debugger
suspends for a particular
session
.
Since:
0.17
See Also:
DebuggerSession
SuspendedEvent
Method Summary
All Methods
Instance Methods
Abstract Methods
Modifier and Type
Method
Description
void
onSuspend
(
SuspendedEvent
event)
Called whenever the
debugger
suspends for a particular
session
.
Method Details
onSuspend
void
onSuspend
(
SuspendedEvent
event)
Called whenever the
debugger
suspends for a particular
session
. If multiple threads would trigger a suspended event then each thread is going to get notified separately.
Parameters:
event
- the suspended event
Since:
0.17