ProgressNotification
data class ProgressNotification(val params: ProgressNotification.Params) : ClientNotification, ServerNotification(source)
An out-of-band notification used to inform the receiver of a progress update for a long-running request.
Types
Link copied to clipboard
data class Params(val progress: Double, val progressToken: ProgressToken, val total: Double? = null, val message: String? = null, val _meta: JsonObject = EmptyJsonObject) : NotificationParams, ProgressBase