org.jetbrains.kotlinx.jupyter.api.ProcessingPriority.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-jupyter-api Show documentation
Show all versions of kotlin-jupyter-api Show documentation
API for libraries supporting Kotlin Jupyter notebooks
package org.jetbrains.kotlinx.jupyter.api
object ProcessingPriority {
const val LOWEST = -300
const val LOWER = -200
const val LOW = -100
const val DEFAULT = 0
const val HIGH = 100
const val HIGHER = 200
const val HIGHEST = 300
}