kotlin-jupyter-kernel
Toggle table of contents
0.13.0-481-1
jvm
Platform filter
jvm
Switch theme
Search in API
kotlin-jupyter-kernel
shared-compiler
/
org.jetbrains.kotlinx.jupyter.execution
/
ExecutionResult
Execution
Result
sealed
interface
ExecutionResult
<
out
T
>
Inheritors
Success
Failure
Interrupted
Members
Types
Failure
Link copied to clipboard
class
Failure
(
val
throwable
:
Throwable
)
:
ExecutionResult
<
Nothing
>
Interrupted
Link copied to clipboard
data
object
Interrupted
:
ExecutionResult
<
Nothing
>
Success
Link copied to clipboard
class
Success
<
out
T
>
(
val
result
:
T
)
:
ExecutionResult
<
T
>