DebugAdapterTracker

A Debug Adapter Tracker is a means to track the communication between the editor and a Debug Adapter.

Online Documentation

Properties

Link copied to clipboard
abstract var onDidSendMessage: (message: JsAny?) -> Unit?

The debug adapter has sent a Debug Adapter Protocol message to the editor.

Link copied to clipboard
abstract var onError: (error: JsError) -> Unit?

An error with the debug adapter has occurred.

Link copied to clipboard
abstract var onExit: (code: Int?, signal: String?) -> Unit?

The debug adapter has exited with the given exit code or signal.

Link copied to clipboard
abstract var onWillReceiveMessage: (message: JsAny?) -> Unit?

The debug adapter is about to receive a Debug Adapter Protocol message from the editor.

Link copied to clipboard
abstract var onWillStartSession: () -> Unit?

A session with the debug adapter is about to be started.

Link copied to clipboard
abstract var onWillStopSession: () -> Unit?

The debug adapter session is about to be stopped.