public onDidStartBootApp()

in src/Controller.ts [93:99]


    public onDidStartBootApp(session: vscode.DebugSession): void {
        const app: BootApp | undefined = this._manager.getAppList().find((elem: BootApp) => elem.activeSessionName === session.name);
        if (app) {
            this._manager.bindDebugSession(app, session);
            this._setState(app, AppState.RUNNING);
        }
    }