-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
Control when a Cell is executing #279
Comments
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Jul 29, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Jul 29, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Jul 31, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Jul 31, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Jul 31, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 1, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 1, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 2, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 2, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 2, 2024
MarcosVn
pushed a commit
to MarcosVn/jupyter-ui
that referenced
this issue
Aug 2, 2024
echarles
pushed a commit
that referenced
this issue
Aug 2, 2024
* feat: add state control for cell execution (#279) * feat: add example for cell execution control (#279) * fix: reject promise error cases in onReply (#279) * feat: improve kernelexecutor error reject (#279) --------- Co-authored-by: Marcos Alves <[email protected]>
@echarles, as far as I'm concerned, the issue can be closed once the version with the update is published. Thank you! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Problem
I have an action in my web application to execute a group of
<Cell>
;If the user performs this action before the code from a previous execution has finished, we get the following error:
Proposed Solution
isExecuting
attribute in theCellState
for each cell and anisAnyCellExecuting
to indicate if there is at least one cell executing.The text was updated successfully, but these errors were encountered: