-
Notifications
You must be signed in to change notification settings - Fork 2.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support background tasks #6534
Comments
tolusha
added
tasks
issues related to the task system
vscode
issues related to VSCode compatibility
debug
issues that related to debug functionality
labels
Nov 12, 2019
This was referenced Nov 18, 2019
26 tasks
Closed
The todo's here are:
|
The issue is that the debugger does not start the debug session, but first waits for the background task to finish. The debugger should listen for the "task finished" event (exact name will be different, see VS Code doc), and then start the debug session. |
28 tasks
35 tasks
akosyakov
pushed a commit
to akosyakov/theia
that referenced
this issue
Feb 24, 2020
…lipse-theia#5517 and also Fixes eclipse-theia#6534 Signed-off-by: Shimon Ben Yair <shimon.ben.yair@sap.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Description
We have
Task.isBackground
[1] which is supposed to use for background tasks.[1] https://github.com/eclipse-theia/theia/blob/master/packages/plugin/src/theia.d.ts#L8304
theia/packages/plugin/src/theia.d.ts
Lines 8387 to 8423 in 145f913
Context
I try to adopt
quarkus
extension. This extension generatespreLaunch
task which is a background one. It means Theia should launch the task and then start a debug session without waiting when task is finished.[1] https://github.com/redhat-developer/vscode-quarkus
The text was updated successfully, but these errors were encountered: