Package-level declarations

Types

Link copied to clipboard
@AutoConfiguration
open class KotlinJupyterAutoConfiguration

Autoconfiguration class for the Kotlin Jupyter kernel in a Spring Boot application. This class sets up the necessary beans for starting Kotlin Jupyter Kernel inside the application.

Link copied to clipboard
class KotlinJupyterKernelService(kernelPorts: KernelPorts, scriptClasspath: List<File> = emptyList(), homeDir: File? = null, clientType: String? = null) : Closeable

A service class responsible for managing and running a kernel server. The server starts in a dedicated thread once the class is instantiated. To interrupt server, call close.

Link copied to clipboard
@Component
class SpringContext : ApplicationContextAware
Link copied to clipboard
@Component
@ConfigurationProperties(prefix = "kotlin.jupyter.kernel.client")
class SpringKotlinJupyterClient
Link copied to clipboard
@Component
@ConfigurationProperties(prefix = "kotlin.jupyter.kernel.ports")
class SpringKotlinJupyterKernelPorts

Properties

Link copied to clipboard
val springContext: ApplicationContext