KernelOwnParams

class KernelOwnParams(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, val extraCompilerArguments: List<String> = emptyList())

To add a new kernel argument:

  1. Add it to this constructor

  2. Define how it's serialized in KernelCmdParameters.kt

  3. Add it to both constructors of KernelOwnParamsBuilder

  4. Add one more bound parameter in KernelOwnParamsBuilder

  5. Add it to KernelOwnParamsBuilder.build

Constructors

Link copied to clipboard
constructor(scriptClasspath: List<File> = emptyList(), homeDir: File?, debugPort: Int? = null, clientType: String? = null, jvmTargetForSnippets: String? = null, replCompilerMode: ReplCompilerMode = ReplCompilerMode.DEFAULT, extraCompilerArguments: List<String> = emptyList())

Properties

Link copied to clipboard
val clientType: String? = null
Link copied to clipboard
val debugPort: Int? = null
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard