ProgressNotification

@Serializable
@SerialName(value = "notifications/progress")
data class ProgressNotification(val params: ProgressNotification.ProgressParams) : JsonRpcNotification

Constructors

Link copied to clipboard

Types

Link copied to clipboard
@Serializable
data class ProgressParams(val progressToken: JsonPrimitive, val progress: Double, val total: Double? = null, val _meta: Map<String, JsonElement>? = null) : NotificationParams

An out-of-band notification used to inform the receiver of a progress update for a long-running request.

Properties

Link copied to clipboard
Link copied to clipboard

Functions