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

org.jetbrains.kotlinx.jupyter.JupyterSessionProviderImpl.kt Maven / Gradle / Ivy

There is a newer version: 0.12.0-335
Show newest version
package org.jetbrains.kotlinx.jupyter

import org.jetbrains.kotlinx.jupyter.api.session.JupyterSession
import org.jetbrains.kotlinx.jupyter.api.session.JupyterSessionProvider

class JupyterSessionProviderImpl : JupyterSessionProvider {
    private val instance = JupyterSessionImpl()

    override fun getCurrentSession(): JupyterSession {
        return instance
    }

    private class JupyterSessionImpl : JupyterSession
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy