Theia API Documentation v1.65.0
    Preparing search index...

    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: DebugChannel): Promise<void>;
        stop(): Promise<void>;
    }

    Implemented by

    Index

    Properties

    Methods

    Properties

    id: string
    parentSession?: DebugAdapterSession

    Methods