JupyterExecutorImpl

Constructors

Link copied to clipboard
constructor(loggerFactory: KernelLoggerFactory)

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard
open override fun close()
Link copied to clipboard
open override fun interruptExecution()

We cannot use Thread.interrupt here because we have no way to control the code user executes. Thread.interrupt will do nothing for the simple calculation (like while (true) 1). Consider replacing with something smarter in the future.

Link copied to clipboard
open override fun launchJob(runnable: suspend CoroutineScope.() -> Unit)
Link copied to clipboard
open override fun <T : Any> runExecution(name: String, classLoader: ClassLoader?, body: () -> T): ExecutionResult<T>