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

    A debug adapter that implements the Debug Adapter Protocol can be registered with the editor if it implements the DebugAdapter interface.

    interface DebugAdapter {
        onDidSendMessage: Event<DebugProtocolMessage>;
        dispose(): void;
        handleMessage(message: DebugProtocolMessage): void;
    }

    Hierarchy (View Summary)

    Index

    Properties

    onDidSendMessage: Event<DebugProtocolMessage>

    An event which fires after the debug adapter has sent a Debug Adapter Protocol message to the editor. Messages can be requests, responses, or events.

    Methods