![JAR search and dependency download from the Maven repository](/logo.png)
org.jetbrains.kotlinx.jupyter.execution.ExecutionResult.kt Maven / Gradle / Ivy
package org.jetbrains.kotlinx.jupyter.execution
sealed interface ExecutionResult {
class Success(val result: T) : ExecutionResult
class Failure(val throwable: Throwable) : ExecutionResult
data object Interrupted : ExecutionResult
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy