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

org.jetbrains.kotlinx.jupyter.messaging.common.kt Maven / Gradle / Ivy

Go to download

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

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

import kotlinx.serialization.SerialName
import kotlinx.serialization.Serializable

@Serializable
enum class MessageStatus {
    @SerialName("ok")
    OK,

    @SerialName("error")
    ERROR,

    @SerialName("abort")
    ABORT;
}

@Serializable
abstract class MessageContent

@Serializable
abstract class MessageReplyContent(
    val status: MessageStatus
) : MessageContent()

@Serializable
abstract class OkReply : MessageReplyContent(MessageStatus.OK)

@Serializable
class Paragraph(
    val cursor: Int,
    val text: String,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy