Interface DebugAdapterSession

The debug adapter session. The debug adapter session manages the lifecycle of a debug session: the debug session should be discarded if and only if the debug adapter session is stopped.

interface DebugAdapterSession {
    id: string;
    parentSession?: DebugAdapterSession;
    start(channel): Promise<void>;
    stop(): Promise<void>;
}

Implemented by

Properties

Methods

Properties

id: string
parentSession?: DebugAdapterSession

Methods