JavaScript is disabled on your browser.
Skip navigation links
Overview
Class
Tree
Deprecated
Index
Search
Help
GraalVM Truffle Java API Reference
25.0.0-dev
45f3ed31fe6e9f5565ba7c0863e2110edbc1b251
com.oracle.truffle.api.debug
SuspendedCallback
Contents
Hide sidebar
❮
❯
Show sidebar
Description
Method Summary
Method Details
onSuspend(SuspendedEvent)
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