-
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
Create event / signal at start of cell execution #118
Comments
Currently this extension does not emit signals and has no public API. On implementation level, all it does is listen to cell metadata changes (using |
Okay - thanks... just feels a bit redundant for multiple extensions to have to set up their own listeners on the metadata. (I assume core JL maintainers have a reason not to want to offer the event as a core signal.) |
I don't think so. In fact when
... which I don't think is the case in general. Anyways, if you want to open a PR to core I would be happy to review it :) |
Ah, interesting history, thanks. Agree with the "not generally true", eg if you Run All etc. Re: a PR, I'm not sure my coding, or understanding of how JL works under the hood, is up to it. |
The
NotebookActions.executionScheduled
andNotebookActions.executed
events allow us to identify when a ntoebook cell is queued for execution and when it completes, but there is no signal for when it starts execution.Would it be possible for this extension to generate a signal that other extensions can connect to that identifies when a cell starts executing?
The text was updated successfully, but these errors were encountered: