All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlinx.jupyter.startup.Spring.kt Maven / Gradle / Ivy

Go to download

Implementation of REPL compiler and preprocessor for Jupyter dialect of Kotlin (IDE-compatible)

The newest version!
package org.jetbrains.kotlinx.jupyter.startup

import org.jetbrains.kotlinx.jupyter.api.libraries.JupyterSocketType

val defaultSpringAppPorts =
    createKernelPorts { socketType ->
        when (socketType) {
            JupyterSocketType.HB -> 50501
            JupyterSocketType.SHELL -> 50502
            JupyterSocketType.CONTROL -> 50503
            JupyterSocketType.STDIN -> 50504
            JupyterSocketType.IOPUB -> 50505
        }
    }

const val DEFAULT_SPRING_SIGNATURE_KEY = "xxx"




© 2015 - 2024 Weber Informatics LLC | Privacy Policy