Type alias IKernelExecutorOptions

IKernelExecutorOptions: {
    connection: JupyterKernel.IKernelConnection;
    model?: IOutputAreaModel;
    onExecutionPhaseChanged?: ((phaseOutput) => void);
    suppressCodeExecutionErrors?: boolean;
}

KernelExecutor options

Type declaration

  • connection: JupyterKernel.IKernelConnection

    Kernel Connection

  • Optional model?: IOutputAreaModel

    Outputs model to populate with the execution results.

  • Optional onExecutionPhaseChanged?: ((phaseOutput) => void)

    Handler for monitoring execution phase changes

    Returns

  • Optional suppressCodeExecutionErrors?: boolean

    Flag defining if promise returned by KernelExecutor must be catched internally in case of code execution errors