CachedTransformationResult

sealed class CachedTransformationResult<T : Any>

Represents a cached transformation result from a previous ApplicationCall.receive invocation.

Types

Link copied to clipboard
open class Failure(type: KType, cause: Throwable) : CachedTransformationResult<Nothing>

Holds a transformation failure cause

Link copied to clipboard
class Success<T : Any>(type: KType, value: T) : CachedTransformationResult<T>

Holds a transformation result value after a successful transformation.

Properties

Link copied to clipboard
val type: KType

requested by the corresponding ApplicationCall.receive invocation

Inheritors

Link copied to clipboard
Link copied to clipboard