Package-level declarations
Types
Link copied to clipboard
object GeneratedPortsHolder
Link copied to clipboard
data class KernelArgs(val cfgFile: File, val scriptClasspath: List<File>, val homeDir: File?, val debugPort: Int?, val clientType: String?, val jvmTargetForSnippets: String?, val replCompilerMode: ReplCompilerMode)
Link copied to clipboard
data class KernelConfig(val host: String = "*", val ports: KernelPorts, val transport: String, val signatureScheme: String, val signatureKey: String, val scriptClasspath: List<File> = emptyList(), val homeDir: File?, val debugPort: Int? = null, val clientType: String? = null, val jvmTargetForSnippets: String? = null, val replCompilerMode: ReplCompilerMode = ReplCompilerMode.DEFAULT)
Link copied to clipboard
data class KernelJupyterParams(val signatureScheme: String?, val key: String?, val ports: KernelPorts, val transport: String?)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
This is used to represent whether the underlying REPL is running in either K1 or K2 mode.
Properties
Functions
Link copied to clipboard
Link copied to clipboard
fun createClientKotlinKernelConfig(host: String, ports: KernelPorts, signatureKey: String, replCompilerMode: ReplCompilerMode): KernelConfig
Creates a configuration for a Kotlin Kernel client.
Link copied to clipboard
Link copied to clipboard
fun createKotlinKernelConfig(ports: KernelPorts, signatureKey: String, scriptClasspath: List<File> = emptyList(), homeDir: File? = null, debugPort: Int? = null, clientType: String? = null, replCompilerMode: ReplCompilerMode = ReplCompilerMode.DEFAULT): KernelConfig
Creates a configuration for the Kotlin Jupyter kernel.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun KernelConfig.javaCmdLine(javaExecutable: String, tempDirPrefix: String, kernelClasspath: String, extraJavaArguments: Collection<String> = emptyList()): List<String>
Link copied to clipboard